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-28",
"epss": "0.00522",
"percentile": "0.40351"
},
"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:21704
Vulnerability from csaf_redhat - Published: 2026-06-03 12:09 - Updated: 2026-06-29 05:00A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.20.24 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.20.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.20.24. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21703\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* golang: archive/tar: Unbounded allocation when parsing GNU sparse map (CVE-2025-58183)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21704",
"url": "https://access.redhat.com/errata/RHSA-2026:21704"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"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_21704.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20.24 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T05:00:04+00:00",
"generator": {
"date": "2026-06-29T05:00:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21704",
"initial_release_date": "2026-06-03T12:09:44+00:00",
"revision_history": [
{
"date": "2026-06-03T12:09:44+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T12:10:22+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:04+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.20",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Ac6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779775286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779779537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Acbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779777646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779777753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1779775501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3Af18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1779775321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Abb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779775556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779776713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779775341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779775162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ad3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779777887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779775925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779775406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779779262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Aeb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779863914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779775199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Ade7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779781943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779778574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Ad3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779782768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Abcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779776579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Aad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779862763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779776562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779775446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Afa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779776640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779775428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ad641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779777733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779775156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779777672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779775430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779777780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Acac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779778528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779776206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779775180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3Ae8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779782383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779775950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779779212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779777087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779776982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779775797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779776059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779775435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Aee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779776320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Ae7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779775187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779775141"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779775286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779779537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779777646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779777753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Ab5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779775556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779776713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Abdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779775341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Acd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779775162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Adcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779777887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779775925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779775406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779779262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779863914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Aea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779775199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779781943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779778574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779782768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779776579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779862763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Aee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779776640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779775428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Afddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779777733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779775156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779777672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779775430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779777780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779778528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Afcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779776206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779775180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3Ae24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779782383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779775950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Ae8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779779212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779777087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Acb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779776982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779775797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ac64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779776059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779775435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779776320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779775187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779775141"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Af24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779775286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779779537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779777646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779777753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3Af0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1779775501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3A87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1779775321"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Aa7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779775556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Afc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779776713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779775341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ab9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779775162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779777887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Ae6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779775925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Aac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779775406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779779262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779863914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Af7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779775199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779781943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Af1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779778574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779782768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aa4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779776579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779862763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Ae17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779776562"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779775446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779776640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Aaa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779775428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aa3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779777733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779775156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3Ac44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779777672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Aabce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779775430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779777780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779778528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779776206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Af06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779775180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779782383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779775950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Afbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779779212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779777087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779776982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779775797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779776059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779775435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779776320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779775187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779775141"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779775181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779779537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779777646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779777753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779775556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779775341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779775162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779777887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779775406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779779262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Aafe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779775514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779863914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779775199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Af161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779781943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Aa8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779778574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779782768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779776579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779862763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Afb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779777733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aaded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779775156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779777672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Abfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779775430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Aec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779777780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779778528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3Af19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779782383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779775950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779775183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Aced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779775187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779775141"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_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-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_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-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_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-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_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-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_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-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:09:44+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21704"
},
{
"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/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_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-03T12:09:44+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21704"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:582dbca498a316625cfaddc58377e5c26390bdcc796d0d3c86f284bbb648b917_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:8c5d19e96a561c57422e1d7247c4072af4e7acfdc15e2214198fafe5fe83d9ce_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b9479c81d02b606739c6c4aa6cfd7b11c5c6d53fbe2d4301498ccbc1ce3d987c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:cd31a78dfdc24276a48e8134f1781094f5c145c1ea5a9ea5d62baa10a9bd8bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:014d8af558f89393f69cde4bc0474592088a9f83a262337a1510f1c7506c3f16_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3c98c36a211a102b87cc280629f2071970e142f10923777e31955f85e631b705_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:8f904d76f6c23eefab3ad77bd5dc815e8553bf2a3090afd013e9ec878f16cb12_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:bdce2e1c771d2af2a9bda5e1ffedac0bfdbf93316bcf8c22aaf8d2ad5a131464_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:52a5f99385579f6953720a80b976ff234b392154eb324457ecafb4158c710c69_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8503f8452d772a93be50f0cacc14b4af76d1925798d6f6da9d693a7d1671687c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3dc82041c2e7f6b78ab528f2884a0aa8ac8f4be69a80b21ab52b0ea2caa9ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:dcea3b1cc4097f375225e64bb0d931adc2d4cc16c9b75d74bbc6f3a7cf10dc8f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:0b878e929677cfe4ac20a1e676baf530250e6ab24c25ae38c6613760b219a7ab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:561f66f0f3e63e8aa65340ec52acc35778a48edda586bdce18ad2e9dea754c0d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:96d6dd4f889cce35adf4b0b2c7d99a8fa383dd52d6d8945922a71167781b2bf5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ad05fa5fb88f3810861b2bda4f8e0a0ab2e6055fabd31b17d5a8b570cac6efc6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:17a529d2879517de7496a2b9408b82d437fe0e858cc5f62aea1ff22151b4d86a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2ea346b1e04324a2200d6ed4436c590ddbf81b4e82a0e59a846d2b03006bb642_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:aded691d63ceb8000c0fd9950da59f1e8eb4c6b2407ddeec5548675f88607eb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee080dacd013ec3ec50d401a1331dd0bbb0434049c1b5c63733fc7c37eb19127_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:a3d271f13de8eb67ad1aa19ab8a0f808769df10a42cd303e8c9c3784575d4f08_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:d641d7235a0ecc39b8e0bb0d437962611f44602ab030791c04dbbc7d8e11c885_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fb34c0072b1a1cd96ab2a449944f1daf32672e8c3efb7b867c4c8568de3d67f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:fddc73c40ddc0c36a36a9c488a4b36ed2d44dca0ec2f01f28c1d6684fc277b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:0436d577e65b1bcfc4f4741e123efc29ffc6b5f0bfcfe69d3d0ff34077f0c089_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3bf2d5fbb780de667ad48e0102ef7d2abd032bf1a490bb8344ff7b8fa745446a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:3f72b792349d310655665719a2962551542ea19acd0e2ff90998781e143b0c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:88a4e855564c1e7054aa90b6ae2c9513e84e55b3a6de8354ea180ac84b3b4e0e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1c41e7f793c543751125fd43eb0d400d80b50cd5f0341e8994eb1403c9367ad4_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:7e439d9b969a4f50a4a7110018f1348291a888f098c2796b6a665e4b5ee1d99d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:de7687aac6d721ac31eea429b1872ae95a126eb07390843ea80dd4588d93551a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:f161d75635aafac2e53b2b202520a4dbe427aa19fe5d4c0a85ddac9a2b38eb08_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:4b0f48a9a905debb43b9eb748f2acca25aaae8a0bfa4f25f8bead75e59e54983_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:e17b7ad00773b9476f8bfc360442fe8d36e975e4578c0410cc0bbab34458a87a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:28b3b86ea9288c28fc9a86e23c6fd771fe8e9a97266bcfac06496febd98e7930_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:528621b66d4179d9261248c1dd62ea528e4edb7f94bbd4e4bcdd80a5d2d60bae_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:73060d0e4d8a59715dc8b5e31efe686127ef333b205a96f7958880c2cd99b81f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c6c32a69f7d8da7862e07309b89f46530d27ae40bafa44541145a00e2b01a546_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:f24a21d1b29d36e9108bf569c6b5e0c9ed8a10e090bb04f037733a248c502048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:1c4326e39edf9d2257a4cab71f0bbaa9c021b1f3591efd8b9458c304a6a426bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:4a22c84b3c1c9d96ef2101648f0fbe6ed388ffc5783cc662f423946f3f4a3863_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a8c203b3c66511b74276c2867221ca2eda70ad275b06a44b1be911976fb5dbe5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:f1acad7d1330b32566f2792ac559aa8c3187415746c01729e6ea2f43ca963f4d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0454620349b621d3e65bef1c7ac3ca6920def63dfbfbcbf820f99d1b2f29427f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:24660d251461bf7ebe0e71011dfcea36ef4a52b45adbf113918207c249175a49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:408116049374976b5d53aea13e5690a4de1e3dea8a4b205f01e9ebe7ad8dfa38_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8028d7c03637bc3fd8a5f934db348f2a9ec8819d15b4719be395c6dd24dad018_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:141e9bf213832136bb547cddc2ea6904af2296394ef30e948ae7f20639b8bb18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5e842ebfeda5d28b323b3c0bad47eb9709fd22a6f3dd8312c4ee0a015ab7b068_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8f68f4a9c3c0dc45af6436ac4952268cc34694a0071220ca36b0c6822260d37d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:96d5632c7179765020a2cf32665b8e7f3e80c35424d66c319751a58530dfe3ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:080d2766324791c1900b3dc510f78c89f8b9a0dee4fe011e12e97aac00748596_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:0b7e978e3192006b8cc9594b6f2ee5649ad62fe8541b54f43c5d7f8908b14837_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:2014556a10d97641dad10944f8a5949beba097d731c804a53150c6f848e79087_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:443913fc1bad97c090d925d81aa7a4563aa4369fad32da79707aadfffa63ecfb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:5bbe0a11dd26ab9a8a4611547150bc1511e7e7b9b07a3c1d0a1f110ef8e2a3bf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6d06f43fe324b21f048f2f8e8ebc25f482d43431446374129a7bbe3fe276100f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:996515fe062e6c9e170bc1491e3ca8e807ab8749f637dbbe9115057ea9febb1e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:cbd7e57778c19b81f06ed213a627ee10ac584799a255e3cba3f18caebf331dc5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:30acfb62b68a8a45a9befe10a2a71424fce7c49d0fde7c1f4a274251e9b8e2f1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:5ff43769cbea8e45f8adbc7860e30b57b071d3e1b243138740962cf94a6c2960_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:63ced125decdc352f290fb0ee7e5e26e85c3b474e97510eb03e4b8b00266f277_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:725d8bd92d8918fdd2bade4e9a83ec631a539efad9af2920f15272db9715e809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:343ec83cc0d833e04ac662e095381772de5337243de97a95d57a45d8f21ec17c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:f0ac8d2bba26838fd56b69158e66409c52f2cff21df59d8e91ecb63f5c09009b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:87b710839d0cb408ee5d8055200d1f5525b7f3942704c85a4ce9974a90ab67a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:f18ff86f20b8e0ce5f14516da64f8905c5d229e3967992d6ffc5c17b24e67b14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:33c8101a98cb471c7eac41bf3b4f8cecc5b8bdeb8151ab79452f9c6ace1c881d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7e212c18f9eca7ef7755bc040d6dcfd7e592440c02013cbc042d1d982df6975_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:b5720e032808bf573c7b90cef398a941bd44603e502092730c6fd38eddc9dc9b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:bb6960a28c4d5671087cd2e35b5e3d5018fccef7f5dd52a620e2a2fbc5ae94cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:2d61e267ba94ca6b726152c7f0c6b332506d658106cdfb991754b164228ff048_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54e5d33df7fab94bbe4211fb0e29ce2429aa32e2a0d73eddc6ba8262d8313acf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:aa780c35830a53904b651fa8eae2c2bdeeea88822bf5b66fdd52a1e3fe8e11ea_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8a05e4616890b561470b372617d32f1b1d61f0225d1f616055d7f8ab021f870e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:ee124a622e9d37fbe158046c9a70e830f0c5f74c352efa11eb5fb0e7b7b3ca79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:fa8796f9361719d8a231e982af2c05351a346e66c2b2e6752bf6a09df5f64a1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:500b62ba4284779aa748f008fdc32ea6e0107bb35ec8831d69100831f0f621b1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:5a18ac61dcee2f396b864f064521fd8e099f41bea4685cdb52289a07f241be9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:97bcd946bacf9580200f62d453ce6e688fee648fc721c7ff89009a21f99b0a91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:d3290a4c798877e238716f52af6da2825450c9b8e3b098fe8dd5766142ce5a4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4ce1984126e595a3804b833513c5544b6d55dbc2f1a314615b30d306b7e36034_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:51fb2aab26879cb28d36add536758600ebee7e9619e2f1ece3c2054508c398a9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a4a348e9c121a2b41f98856f57d1565a5fb5f8a1d3821c2d8e29eaf60340ae81_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:bcda449a4925872250ec4e77f06e5a6ea4977b1aa0d36da237e4a862ff325ede_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0aeaa29db9857afc2949ab062aa7ffe64ba7f6c2849ce99f1b1b8cb460ea9b91_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:0ceef4cb9b2782e60854ce2dc11ad9f2fcec8658393d40b6ee1924360945acdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:270160d298df90af6b7d80b33a6c759ed721a4be40b12aa5e2cfbbcffce0e532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ac4b3321e8b53123cd34dd7545c9a7b69c07d4b09f4eabf7d0e55513782407f2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8694c99e46fd9496d5c4af9a391fc8a3022cd480904b5fc47b892705de381ecf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:91818293e08d16c7fa6a2562716bb614669e9946afe0a4c358bd354ad31234c5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:942148ef9b9eff5fa47616a64413051b6ea4003199e789d1c727afef18fca184_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:ed2929c479852a6621e6643b48dd542443ec29acb2386bd90452c9da6f7a0268_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:422a4aa5cd0a19cfdcd5d0514bbe6278160d73eae091bd70cc5a3de54151a3a6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:425c90d7f60085ce848f3faa0a282353a748a243e7b1f100f548888bfca9b212_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:afe1c1bd13a88576ee470fd1eaf7969756647d9366e45d876efd5d30a45f3dab_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb591a256b2da174c7047e27b118401e8111d8c0db6ecd07228547f5ee5869df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:60636041bc36ee68af1eb9b85a0764f7c087097cf44c19f9df264c1faec84ea2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:66492245ab0d7ae599a7997b406928e66e219c48a64396560237011fc85d4d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:ea262e274cc47488d916fa9c7dc9b4cddc5dd295dad53b86bd7b091e41996093_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:f7fac423ae70a99cf5792818e258f935d62cefa674df628af28e0e36c0d396c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0da9c055a3338dfc1502583a8328603d84bf048623abcfff1f7c1d2d7a5ee3f4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:40adbf327930608784c89974e9c381195d765f7aa21522ff92e63eea1563a66f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:e8664c44186543dd18347bccc5335fbdc0d54f349a0561e591c320c14d8e0a5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:048c75c6136562c26278835592376238197cce51df7ef7fcd8516043456dd857_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:89fe6d9676fbc002db7e06b2c50907a86f50524a984dc2bf0dd6577996c4abbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e6327d10de66ca0abe23f791f721bb2447299c6c041caf5833bb22b85fa3b7bf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:4c623e856f783478938a90c9c078d7e5abdb724b2d6bba7406b6854ac5a855b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:68d696da90dc882471388b3ac7df453c968eaa2d8083335d3afec101a47e685f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:abce4f60300f6ce73719049242173865576bdd45d3f4eddfcff48a9261b23363_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:bfdcc91504c32b35c19a6122ea11503f0113e619039b54194a7d6238d3533674_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:05db28bdf3e9ff2563ffdbc58f5fb768a0fa659471e1272b2ed548acf1a2ea5e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:0cf982518666d0d4facf7c6c8c7e24c44c848c942d75dd91a4adc41054d308da_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:3c17035280da63701f8b340029dd84759f6db38b39ac05924404f47c728d245d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c44debbe3bb24c8a17e2fe0fdfb9dfe05ed3e98442098f8bcaa0e7bdefedaa2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:129bf33dbbb82b08e253785c32c7313bb3718cbe4f60d7f81f7b236df549a273_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:1e59565dc7938655ef78723cd267383f7e305ffe5c9d267c4d980f458cbf87db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c348995d1558892f74a83d0df334890ae2fb7a29f2715507b86ceab1c4cbd33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:ec37dc00253d414313a6b21b055a659404085e238f784f4d7b08561dfa84b313_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0137c8a67876a8883efe9ae546cb0bacc222b14582ceba339706151b777fa658_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:52bc3140e0fc3621c8e017f37972e99213e3ad00b26d612af1b6210c9315e509_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9538794f3206ecb95b809f7da328831c75df269d2ab9cc35b0f6eef7d3b2e622_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:cac3e5e5eb83efb85be10f5cae7f54d855ffd97cc9cbdb835aa6b370a72f6186_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:06af3d789638e5c40f19f5a0fd2ab1bfc23f9bec5532093588e6823a8b5c946b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:30707bfe0e337186bdcbca7ecce8562d0500de0e14a501a5c2fdbd20996d6807_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:53e26ffed4da9070f17f585c646865ff1fa5dc7c53601a8921168cfe12b030ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:9dc1eb1e909c93f94493555308f124c8caf538427a98544629ebfadceb918f0a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4a7b92711186fb8909e256af245d0de71da632850cebe2460db0d7ccaad72fea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7fe77766abb184b0c44505a85ffd42984a3abff5d84f0b7b7dddafb9e757bf9a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:cb2c659c1abbd5ec61763a00bf06e44c9250564dbe08dfdbfc3abd6a28c6e766_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:16c503932616308c620a49587a4c9ae843e0e8b4946defe6ae20ba9614f021b4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:3427705bf5605a774af9a4a7da88332803d85d6bc65fc516039689a82cf2ff4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fc506d95a79c5777c71830dddf379c59df52b75482d9613ef21168d22480f96f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:4181ea96370119b4e098b840158e21ca037905d152f9b0d803ec223c24c04b77_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:49b870dffb4f8ebf42c96e7013cd69f95836e0a1fe29a8b06ed2531ff1449187_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:967d395605911ac70c2c748681272297df619c33ef70aa70fe2daf1bb4e4cc3a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:068b71e2b6ab7503350061e52ee07adbace151cef5dfc3f9197e5e0411cf1b32_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:8db8b830ff569d7912a4db7d915635b7a9fbf79f7a4887f990acbc9f146a76a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c64ba931820fea60d01869031e79bbca5720e66d7a637f1d3b1730790e4eeadc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8223f8eeff4f7448629111301e0f33ab7d6907bd31e77e099cfb8d611ffbe093_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:964b41df1ed80b219cf149f25095bd52a3490625d26afeac1ad731277733e1be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fcf683f23b25092162369a2e47b6cb3aaf2f97828d5150d1293dc860633f2430_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:36681dfe63d6295bb68fa53b38bc0df805de13842848fd104e3f33cfffec5f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:3de8e0e43eeeb46eb6d061caaa9aa909c2f1008f37bc55314bae233fce7e68cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:53bf57b855f42a389cbadcab18a3051e2f8d87e2b746c1fcfb05aa8ab39e35c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0af5e796729fe5d1d3547a8c8985d70404fd4df93e1f3262ac2ef942ef938cab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8c57ebccacb5e7eea06ef83ff3ee307ff795f053283e5e741cd88f6a78ce805d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ee7726a331bd903732658206ce63b0d8f475d1c8f41f5bc0affc3bf0383ec9d5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2e98d2564c498ac5e7d58b67204eaf9581a98f0b0c14f2e38e7a05277cf48a6d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:8eada765c64b1555bc6d5b3154b738f202d66ee255d527beeb8f47b6e402f531_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f06ffa43107d53837085dfdcc3c2f2369b4b0b4f8b067c3458aa633c48dd9d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:936b1ddccd36dba23a1fbe5f5bf5063af7ce14ba127f1e8d3797ff77c6ebf368_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e24a5e3c4e67a805d8dfa793822278d10e526ec33080a2152eff049affc57088_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:e8771493bc596caf15291873e8647f8f4dd5085d63e9a8bc1bf55642e5d4b456_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:f19d28f2de3bf4fcdcd6595cbf139bfb0307da8ae554c0f01feff849892a3300_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:09245432b689c5bb9552109d615f7edfad80d2e3ab51ffd6a5353fbc385cacb5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:183bade5f8186134fce849b83615ef66593637c7b26e14492673445c0819f1e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8120e16407cdffe8463860ad94af50df5f2531896750765f393fd262293468a2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:84e039a7347dd61e49973b321fe3bdd23a80fa86e46c62b94f81e131305e2973_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6bbea41061856fe0aa5211ee017b8d73bcfb6cb738ef3b85718be36e61df51d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:7d1d8d91f2f334e95b48968ba1fa982f0a19e5714391915f84f8fb77b3fed31b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ced5643cce0e1492b0ad26532b3c1697c7adaa738af36991a7e031cd0f438cf7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e7581be21d350fe80a4686eafb11d92fb679516b838ac74b1708f4c267332e34_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4c614504948366aa2624740b7964d3ef0eca302b7a5ae7a4c11890cce383d42c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:757fa06826d46e360d11b38a213d52b2d26583aff036dda8db0ae3debe8fd032_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:9a1b7a96c8c8cdd351bbca04f5e5957a6430d99b1b0a6d07df06cc7f852180d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fbdcd464e38d7166b7ebe33070b9924baad52a8e2212b10ac9481a222f25db20_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0876c4a598e336763dbde3c318aac9efa43b39eb9390397b76e5b3eb452c09a8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:0c7b42c3e09cc88cac42a23e6b370a28a966a45cda219ae3ef36109295325a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2dc16819f1028cb7083893e81b72596da38e8b6efdf70cf315a7140407f31a2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:8e4b4c2f76c771f73396828be42b6c64bf38aa1b226b738c89743f26c1e6c823_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:7f1faf44307685ca76c05238f4e5ce05e61b8b5b3ec4af2601257084a726fa9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:8b0bf63e63d1afbafdcd237fbe1cfcdec14eeaeecfbf741b512c31a02504c9ff_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:907279e7b98382b80bfc2cccfbc53ad6a8feaa814d8a966563d0aa332fd5d327_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:26905e2558f8b34cf0dcbe89c509e807b0798a4528b88617f8b991d8a8080834_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:45150d8db1cb94142965578b745264e5457f4d04871a7865e4a9ab624135454b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6da3b60b6832af4592e6252dbaa9b80b2fbf3924f8854244de68f9d48fa8b604_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:21709
Vulnerability from csaf_redhat - Published: 2026-06-02 10:03 - Updated: 2026-06-29 05:00A flaw was found in minimatch. A remote attacker could exploit this Regular Expression Denial of Service (ReDoS) vulnerability by providing a specially crafted glob pattern. This pattern, containing numerous consecutive wildcard characters, causes excessive processing and exponential backtracking in the regular expression engine. Successful exploitation leads to a Denial of Service (DoS), making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.21.18 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.21.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.21.18. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:21707\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21709",
"url": "https://access.redhat.com/errata/RHSA-2026:21709"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-26996",
"url": "https://access.redhat.com/security/cve/CVE-2026-26996"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21709.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.21.18 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T05:00:04+00:00",
"generator": {
"date": "2026-06-29T05:00:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21709",
"initial_release_date": "2026-06-02T10:03:12+00:00",
"revision_history": [
{
"date": "2026-06-02T10:03:12+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T10:04:41+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:04+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.21",
"product": {
"name": "Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.21::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-ui-rhel9@sha256%3A1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9\u0026tag=1779866147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Ad273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Ac8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779777171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Adb1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779775695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779777459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779864787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ac1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Add22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ae257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Aac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779776742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779777352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Afee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779777764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Ace7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Acdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aa85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Ac7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ae5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Ae012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Af6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779775793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Ad6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779775737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779864960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Aa80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779775736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ab58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779781208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Ace7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779857028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ad863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ab13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779867015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779783804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ab296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779867238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Abbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779802424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Ad17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Abf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779845605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779783806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ac2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779804248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Af8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ad3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ab5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ae0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Aad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779775790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779775810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779775780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779775752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Aa281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779775761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779775830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779775819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Ac85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779775785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Aa28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779775796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779775724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Adad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779788644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779778779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Aebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779780706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Afe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779802549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Af7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Abe60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aa34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779778241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ac26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Afa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ad74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Aa8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ac876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779784474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ad42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779775981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Af1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779776041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779802083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779776985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779776484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779777152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ac6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779777926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779777478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779775707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Ac1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Af208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779788401"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Af121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ad6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ab70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Abf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779775794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779776612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Acd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779864799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779794645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Ac66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Af33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779804447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1779775851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1779775751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Aa9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Ad942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Ae918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779776164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Adad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779777381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Ac1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779777296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779777761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Ad133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779776556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Aad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ad8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779864741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1779775695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1779775695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ad66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1779775734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ad66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1779775734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1779775811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1779775818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ac5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ab2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Acf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ab1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ad781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1779775754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3Aed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3A949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1779775796"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Acdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Aa70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779777171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779775695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Abbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779777459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779864787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ab37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ab911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Af3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ae368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Afbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1779775793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779775737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Af02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1779864960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779775736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ad02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779781208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aa360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aa39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779857028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Afa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779867015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Acae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779783804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779867238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779802424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Af7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aa58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779845605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779783806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Aa45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Accc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779804248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Aef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779775790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Ac40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779775810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Aff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779775780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779775752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779775761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779775830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Ada0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779775819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779775785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779775796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779775724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779788644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Ab9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779778779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ac73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779780706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Af0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ad3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779802549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ac4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ade0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779778241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ab3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ae286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Af00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Acb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aa92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Ad6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779784474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779775981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Aadbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779776041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779802083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779775707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Ab7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Af827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779788401"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Aacfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ac6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779775794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Afa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ad727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779776612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779864799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779794645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Ad3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aeb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ae74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779804447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Aaa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ac213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Af62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Acebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779776164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Af7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Acc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Abb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779864741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ae8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ad3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ac0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Aeafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Afeb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Afd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779777459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779864787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ab635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Abcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aa01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Af454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Aaf6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ac95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Acee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779781208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779857028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779867015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Abb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779783804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Af05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779867238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779802424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ac69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779845605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ab0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779783806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ac3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779804248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Aa9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ac8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ad10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ac615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ae4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Af26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779788644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779778779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779780706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Aba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ae2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Aebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ae014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779802549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aa5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Abe3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779778241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Aecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ab638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Adc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779784474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ac317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Aa51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779776985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Aa3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779776484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779777152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ae9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779777926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779777478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ae68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ad1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779788401"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Acb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ad42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ae8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779864799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Ae5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779794645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Aef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Aa4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779804447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ae71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Acd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779776164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ac5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779864741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aaac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Abcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1779777459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Afb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ae1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1779864787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ad596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ac0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Aa00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ac3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Ad9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779776742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Aad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779777352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779777764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Ac54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Afcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1779776824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Aa2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Abdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Adae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779844316"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1779781208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aa9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ab148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1779857028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1779867015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1779783804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1779775977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Abdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1779867238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Afb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779802424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1779784789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1779845605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1779783806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ae0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aadd6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1779804248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ac4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Aaca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Af6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Af7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Aa49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Aa4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ad36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1779788644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Aa2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1779778779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1779780706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Af4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Aaa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ad4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1779802549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ad34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Acdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1779778241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ae540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Af28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Aec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aa48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Abbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ac1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1779784474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779775981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ac6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779776041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779802083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779777926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1779788401"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Adc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ab76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779776612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1779864799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Ae8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1779794645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ab626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1779778305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Aaf7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1779804447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Aa07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Af2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aa5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779776164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1779788102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3Ab301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779777381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779777296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1779777761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Aeea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779776556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1779864741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Abd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ae2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-26996",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"discovery_date": "2026-02-20T04:01:11.896063+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2441268"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in minimatch. A remote attacker could exploit this Regular Expression Denial of Service (ReDoS) vulnerability by providing a specially crafted glob pattern. This pattern, containing numerous consecutive wildcard characters, causes excessive processing and exponential backtracking in the regular expression engine. Successful exploitation leads to a Denial of Service (DoS), making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "minimatch: minimatch: Denial of Service via specially crafted glob patterns",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this flaw requires that a user or service processes untrusted input.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-26996"
},
{
"category": "external",
"summary": "RHBZ#2441268",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2441268"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-26996",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-26996"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996"
},
{
"category": "external",
"summary": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5",
"url": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5"
},
{
"category": "external",
"summary": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26",
"url": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26"
}
],
"release_date": "2026-02-20T03:05:21.105000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T10:03:12+00:00",
"details": "For OpenShift Container Platform 4.21 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:81071b95d587ae2bb8f1d651c0d537d408fc4c86a5d664c7be077edf8ca99603\n\n (For s390x architecture)\n The image digest is sha256:3f6187bdaac8dd225d87416237c2b61741d12eb56ae8042563e851247d39d448\n\n (For ppc64le architecture)\n The image digest is sha256:0cd31c10b0d84d415b4fe035cc9a7bcc88f195c85bbd55c1c058a87e8e469e1f\n\n (For aarch64 architecture)\n The image digest is sha256:400c31a6bf0042e625fadb528ad0fe0bfcb03aeb31893bee18f77a9b59139d1a\n\nAll OpenShift Container Platform 4.21 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21709"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "minimatch: minimatch: Denial of Service via specially crafted glob patterns"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T10:03:12+00:00",
"details": "For OpenShift Container Platform 4.21 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:81071b95d587ae2bb8f1d651c0d537d408fc4c86a5d664c7be077edf8ca99603\n\n (For s390x architecture)\n The image digest is sha256:3f6187bdaac8dd225d87416237c2b61741d12eb56ae8042563e851247d39d448\n\n (For ppc64le architecture)\n The image digest is sha256:0cd31c10b0d84d415b4fe035cc9a7bcc88f195c85bbd55c1c058a87e8e469e1f\n\n (For aarch64 architecture)\n The image digest is sha256:400c31a6bf0042e625fadb528ad0fe0bfcb03aeb31893bee18f77a9b59139d1a\n\nAll OpenShift Container Platform 4.21 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21709"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T10:03:12+00:00",
"details": "For OpenShift Container Platform 4.21 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:81071b95d587ae2bb8f1d651c0d537d408fc4c86a5d664c7be077edf8ca99603\n\n (For s390x architecture)\n The image digest is sha256:3f6187bdaac8dd225d87416237c2b61741d12eb56ae8042563e851247d39d448\n\n (For ppc64le architecture)\n The image digest is sha256:0cd31c10b0d84d415b4fe035cc9a7bcc88f195c85bbd55c1c058a87e8e469e1f\n\n (For aarch64 architecture)\n The image digest is sha256:400c31a6bf0042e625fadb528ad0fe0bfcb03aeb31893bee18f77a9b59139d1a\n\nAll OpenShift Container Platform 4.21 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21709"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:52af821153a736cbe6de87e18c2df5a00092049433c8e0be0be3e8587ae0d25e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:674825555c1bc1b01e9b3c9c2649f1218bbbba11497062f8af7afddbebd8e72e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:f454f0a46053fc25a4e70f4aa59b4289d1c4d4c418c84fc681357a4112dab416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fcea184ef87e864901fc1e5956f62e95a9c3608a199df63d0035cd40ff431387_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1cbbb3f35e9c50a020bbf1dc2fcea0f8f4ceed6055e4d486a39a9ae8f73fc8b2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:728d9fee8a4a53910fa353703914a3255c894ddf214d3831506477367f1c4d24_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:af7aae4158150c5b2258359d584937fa025088443b3a82cdc58d2c98bbf321d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e74a66d7eff5b2a3c089b6ab3cd39ef77ad71141ca71cbb02e041d98838cabe7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:15b6729c2d082b1b525bd0e7e4697aa15b172e9e21b09eb6bca4a50300a78010_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:24faf0da82cf08c2e0eecf91c6e27df8a5d4e12335c7a5afe54648eccdbf0446_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8847455ff78ac1048e15107c5df3d6f58ad7c988628b3c16cd24f64e931353af_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cae7c8de70514903dced6dde6ce6cbc53de161eba491175f60c169034c68879a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:1db3548b286a934b749af7521387213e0ae20b4514eda169cee7d4d215732d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:554e1ae98cd424f83a1bcff7ed544762723aab8166d31c3331386ec4d6836882_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:793272da7592d0fb32652c6eebb56bdffa7c7affd861fdcf504bff87f1766c3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:39385d10f2ef7fd63510aded65707d75c7aac22f1ea5661a98e3fc883e5856bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:5ce67ad326f00ec35ec342b481fbfae2197bc322999887cc5e7e2679fa98c972_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:53f15a3ac543db6f8d01a985f9c8c5aea0b4ae1951fdbd4bfe4e7516c217a0ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:db1d386a3dadc27e58d2dbc7e390ea0166be1cb8871036691469ec5d7693ee51_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:34d24c289afea7506b200788565426fce077dcb13208c5a6b3f0fbf391cc2e6b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:728b9f2e3d200a408a8d6113ca34e7470f7d2aa98089769f3fc76c8b624250dc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:d36ee0e031c19b1389545bf430c26b1a5be94f0b741ce5b0735d7713b4a66385_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f26320b2299781265fd34d4321f3864c55410d8616dd44a4604dbb3dd72dec95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8eee24e2ba205059d88cd91828609015c3394446af21a3f398006c86ba349bd1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:96c2a32827b3b37a0d255806e8139051712af405353be5cd49d6e5145777a992_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9a8cca7d59c2eb381637201fbf030244c7401d98fd462e178a091d9a6aa80e54_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a2ae55218cd8d569dd595d6824112d13e1b888dd50b3602602df993bc244799b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4b770f5b84c319bfd98b8aaf9bf8ef1dfece59383142bc690a4c3389e2d7d4c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:94c5619eb997fd5a1e031bc60f097a8ff8f95cc69d15da6ae3227ec9bfba8c52_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:9962b794b6ee6a291133012dccc65bd682122eb91abf4f5c36217194c8949a14_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f05674fe90fbb797009f58d2424a5d3eafcee9be5ae6c6865ee0497d05ea9cf9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:203f65bb67d851954d11238f4126875c149850d39e2a376cf9c5b358c8737396_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2f8922d9ebe643f3ddfff06ac407e8eb1d032493da2c06c1fe821f68f90de909_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c73d8a013210304595f3e31e0c132286f5ff3f27545c3c3227d89a834457fb62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ebdd1401e2586e70133b4f6a2cb9083e1bab7dfa688ef7837fe758d67da9acd9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:1aa8ff8fce7612bfd9467738c6b145e1aef4304586fea45a3c1c449a3fc3264a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5a6134d6ddf07623d5201c38fd81fdb0c806c6eefafd9b18c876b107e648fd97_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d3768de96921b1be52a23512ee8464f4a6d3d48dfc824515dfb9504646140a92_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d4e1540cc8c60774c3eb992c1d49c3b86de6506f0ace648419f3a0fa9432fc25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:07587d8aa8b42387e76f22ffacb18b0bb9a4019f006d663e57bb1868d768e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:77d96383e4394c6d342d4e4e1a3362ffa9c4a9cb9c8079b5f05c130ab4c2ae2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82d9bb54658be4c1443187bd61e41d9903a2722a34f2aa54c77a19fed8404e78_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fd80f1f41f1a913827bfdbf7c9e7b1eed04a2d8f811bfac51bf56156d80461ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1363e0cc76ffca5f485afdd1fc5f4c74e0cbafc50113e716f71c847d76e6ddfe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:23316dd10128eb88f78ab0d7ccbfc3d5a6b71024e99796e7e138780784c7a37f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:71591575b15efff41f4220cf08b13d24d4a7f60a344157dcaed9beac4bc74c33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a34a8675d80bec4c5781aa74dfb91df11a7a09b98ce4778511e161004163b3e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1271963d65007b54c554e5fed17475dfea8fdebb16c7d4945a793944ba6bcbc8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1d2d78e4d8fbd6f29941d7eb76b31762a6cc7ab25b4282a30ac6848ae24f22c7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:49da63f2c1d6d008cb08edc73cc40b366ae7b0e8d2c969248cedb99c69ef5dd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5e2c6cc6e3e1a36b1a106ade372f60ec2ebd0f988e77b02a2d43c78a10518d2d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:756fb4b641a13b5434725761e4789fd6d0846d2a061c5b0a5f67d7e6cc88cf50_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:926a0a31f30371e7fdba7192351788f2b996ae942c0ac104a1e72de77309db21_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bbb998cecfd233239c3a44aa17aab2f8d00be047f03d621f915cf33fcc143baa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fb90e31f6e68a350b64b01760ad9518d6e00fbbd848e55f2848efd919233ec3a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2154126f421770d5bda37e9900740c778969b6aa570165083b39b6d467203e5f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:2295af5d9bc488996bfca87e77c932fe8afd8916ee267e14a49b239694471b2e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:31f87835233bac5e6d40d61be4665568d6f8820abdfa74118c2945d21ee95ff1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:bdbdf8fd9199fd5626cfcf589c1ddd1071002360cb6756f86e0e2ac33d62ac16_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:855fb00b2acb7ab10b5cb047505d8b9f5d68cd1d279d6ab685a6701b6174c73e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ad3bce842d24e5eff6aaf84ef24d34ef65a9dc920c03d176b1123c4a42c982ba_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:17048c2a4395706bbffa8ca005fb5196a78f09344816ccb035235b9e6499b2a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:6d87d4a287383b6b2e81366de0a5f98cdefa0e951a35db22e8168a6dc854d729_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d17a49cd9218b1ff8b3892b9bf14b6c810be8bb45cbacc704a6107c0af5ef4ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f7e9ff3f68fed9e9e3354c282dccb8d4aea6ed20245ea359d7a5dc4eff376406_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3bc9d432e32609e8a7110835fa13ce58cc7af325fb41828a06f9879dc7c7512f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41eb9dfe73cf91970161d762c1887e0ba8d6769aa421f67ca062350168d92814_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:825647b2c71d39fb882693007f910b1ba19c92c2dfdeef08a1a0ff3f28ac4cf3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c876ef397392a29e2f6b7dd621deb98192e749bd451df92438bdd9e63804ef44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b5d9390f4c5bb6156de0eb2fec1fc3ad1e9a65bc653ab094a4aff553cd5cd47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a58f7ffdb44b447519b8668455b4562fc9ad6bf10dbbb274794f8104a14684a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bf7d8b424579d1756c1be5b17c28d91cc55406d545e92ee7970df6e3fd0e61f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c69be31e0fb6bbc7fff475c66da903fcbd03719de42a310e25a33c751105f636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:079215eb115e3f17c84d070fb9782cf1400db1d9b289b85d682764df85a48ff5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:416475fc08e297a59ac9aba165f75a8b073672250970ee8c3238ccad5ac2f038_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4b79c52344e2027926860e2c3e5bcf1a8dd7072e8062031306172c3ee83944b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b0874483abfe51a1eb1772a77d6d9d11a461d6ce1bc599e15d6e2342baa4f3b1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:20f1afbd3cda9a5a6edc68215a1fa2b874b63b38acefbcd810d71201eb0fdaf4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:2eb1e322a333f7796e4e65cd64ae588ea533b671b3d2e10c3f13f90e7c9c5660_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8a34393e843f657ae1876ee19e33a1ffaf2c941540f010abece3e002a25a98c8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9330028cd2bb0a68c42a8faa565d2ff79af4373dfcfebf117e855c68b05afcd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:12061d0ef100eb44bc8b09709f753c8f10de43156fa77cf2372bc2f8a315e081_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:590845c63f87551df6447540ed6e247863f774efcf49380027e2adb04f86f40d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d1659631071c80327ae49d37a097f71f969db3c6edc0a72c9bab872b6c0be727_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f827608576a5042f3b3fcca34eaa13ca81db9393bdadd0936c18ea1ed4c76ac7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:1b6ec45a5dd54adba84ab12adcb511876b5da7add928f458a4cca8724bb4fb81_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f02058e85a90673e98cad9b0d167931536ac8369e4839b3b28d4228d159c5401_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:5162a1851c7f5740d2a63385b1e1da4ac190b3fb7748a2c9346112b5fb023e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fbade9f3b0fa1bd2c04097a56999943d07b0484f45345cf4e64ee9a1cdf25a13_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5cb7f988e3e217a9aed46f0ee1b421ec0602d3d7734e6e2f293d82497271ad3c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b58784e9a37d0618d97c751a1b2c0d506cc083cf2eea18e61e2b147558661a35_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cee471747ccfc025ebe70284080a11e3f28bdc6ff525e6fdc8178cc44f274c6f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ef10dd96072fa954c617c52e85961dd26b9bfb81ea13cff3451440d3741c0faa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4fe86585070b05611c468f9c37b1ca9665a68bd9f65b14e969336e6e984118d0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:8b387b1b24f557dcae001f8abbcffd3a32957da80b5c438de7cd2329e3ba84d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:94b0983e1926aedc3a133c583c860750e535b663058f9bc1e23393e4ebc366b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cd4bd16bfbc921eeeec1477fc8e6fe604930ab5722c0c8e1f0bbf54eb29aaf6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:03f8dd4166d8f44c637ea92ee33155e3dd3e85fa396ab2cbac1380a759b00c68_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:352426459ed8c73e992641e17e612d572fc540a564d43346021a91d05ba069de_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e5254fa78f5c97ff1cd6d197f0a3a191dad579ef7d530793a4632b97584fc25d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e8e7b9f7553c7795758f185c149bfd9986e113c64926d7b0de95f59788f62a46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:46bced34d474e2ec719115768495c3861c593a17d5c038bb0350021cdff5f021_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7107c3fb46ffa8fdca034c5215ccbd676b4cf056f5859fb6b942889b90b50c53_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a39d792438809384524ed5db7e4b7d0d8354e26ff15a7159106e32c504e73312_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b148428eeff2384f14c5c1842781508241d3efcc0e07787d5134b2dc9557360b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:35ec3df3d2fe753929e81e570e6b5cde04d442a9fd1ee5c0964b258b09a109b2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a4531b8a26d23908a449945bfc9898e0c34f11935a2d094b72bc3a81af9f619b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c66c48358ac6fc0ef0bc86b8435eaa0d6ba3aa4db533fe5fed71e79bac5f73f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:d3cb3b351b454f80c24fe399890f1864ab65f0b75430695ddd1e871de9bfa070_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:079b98f10065093e210e8093d26288f5543406a481a394c453e90bf956640642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a7e27eecf246d957b0b7fe809e1e52a4d2f949517f04af1192e04c90060dc85_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:6fc3dc364d7075eb917f3d66aa081218d27bc2ee7cca4169e5a7dbc4ea85453d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:89a45d0ce160176e09c89f9fe6dd99e818f14b0078ab8714fbe6406c3a28ca7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1717bf8d2e52544214b04b86deb614bd7819009193b9d6c6b5b0ea4bcffba6c5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:257fc4cabf7a153abe64333a96fc621548827dd947a234849fb915b02dcab4fb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:58e1cd9ba0756ff6cab875d80f3ae1817a7395909efecc2552ba8ac49bf956d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e918664d0ae7b802fb94093e13f9dd80223ccbb2a8d142a39b2c2a61ba4a8ade_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1b59600308ab794c2beb0becb22ceb139eca0882a4e7c5842a77a87786d102a2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:6b37a654f93cb89374907bb3e3131e2c497e855d3273e5efb2ac21fe2a829135_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8f2d006d0f228ab8506584269122b1db170d20b0079c1b1f7ec4cb656753e8de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:dad7cbd338e00ec1f9bac3a4552e7cd9952aafa7389043bd98eaccf035f4472b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:46780b481e4288830337fa9ec69d42facc7de5c9fe1e874268e8f7a72b8589cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:8e7944ab22f30804aec5aea8bec9f2d7f9d157346f27ee389539ae119a013a4c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:133cbc8aa97be1f3f0e2b8553e2fa25df8ed643aeb3e99e0534b7f4434ae1be6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5e7f3ae67eb8cbc2babcd9958f578602f16f3d819291dfecabbffa69df6a808b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c2848b977f8695699d7ee456d2b2a466ae49de9dc28e910a440e7a6eb73f7cae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ccc70e95614cd34eec1f9770d0bbce23179259df917c429192704cb3454c9011_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:21fde3c7a51911063c358dd7c40352754afd2a98833bbac33a2904ad31f8430a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:6658649c92a7572cba9aabfb31b7072a95c7777425351c8e21f70536cbbc448a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:78bb5d32d6c37b5ddbf0d9c9ee723889ce936c3d1024cbd031a998b7e1ac3da3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7c2ff71f3a9a81ebc92a11307a6022fb848046fba6277db16b530884bb0232ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:21710
Vulnerability from csaf_redhat - Published: 2026-06-02 08:49 - Updated: 2026-06-29 05:00A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.21.18 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.21.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.21.18. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21709\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.21 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"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:21710",
"url": "https://access.redhat.com/errata/RHSA-2026:21710"
},
{
"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_21710.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.21.18 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T05:00:04+00:00",
"generator": {
"date": "2026-06-29T05:00:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21710",
"initial_release_date": "2026-06-02T08:49:45+00:00",
"revision_history": [
{
"date": "2026-06-02T08:49:45+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T08:50:25+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:04+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.21",
"product": {
"name": "Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.21::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779775745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ad182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779778569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Aa68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779776135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ab83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779778291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Abea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779784554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1779775894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3Ab32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1779775913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-netsec-vsp-rhel9@sha256%3Ab322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9\u0026tag=1779775862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-marvell-cp-agent-rhel9@sha256%3A342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9\u0026tag=1779776207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-marvell-vsp-rhel9@sha256%3A85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9\u0026tag=1779775901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-network-resources-injector-rhel9@sha256%3Add185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9\u0026tag=1779775897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779776565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779777577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Af01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779783481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779781068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779777154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779777302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779780852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Acfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779776445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779855421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779778075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Adfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779783709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779781391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779780058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ab5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779778055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779853848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Aac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779777056"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779864978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779777162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aaa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779776571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779776068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779776862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Adeea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Abf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779775932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779783769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779802029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779777536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779783181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779776588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779778434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779777173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779780178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779776917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779777882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779777449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779777864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779802566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Acc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779775706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779778064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Abe4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779782621"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779775745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ac8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779778569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779776135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779778291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779784554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1779775894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3Aa07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1779775913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-netsec-vsp-rhel9@sha256%3Acf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9\u0026tag=1779775862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-marvell-cp-agent-rhel9@sha256%3Af4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9\u0026tag=1779776207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-marvell-vsp-rhel9@sha256%3A37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9\u0026tag=1779775901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-network-resources-injector-rhel9@sha256%3A0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9\u0026tag=1779775897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779776565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Af512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779777577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779783481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779781068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779777154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Aee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779777302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Acb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779780852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ad9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779776445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779855421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779778075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779783709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779781391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Afc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779780058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ab5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779778055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779853848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Ab6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779777056"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ac52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779864978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Acf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779777162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Ab065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aaac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779776571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779776068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779776862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779776917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Adebf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779775932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ae12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779783769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779802029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Ae43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779777536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779783181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779776588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779778434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779777173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779780178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779777882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779777449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779777864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ad7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779802566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779775706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779778064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779782621"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779775745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779778569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Acf267ea3888262958485c5064492790226446b10d067833a61577a14801692db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779776135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779778291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Ab088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779784554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ae4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779776565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779777577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779783481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779781068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Ae7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779777154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779777302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779780852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779776445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Af614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779855421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779778075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779783709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779781391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779780058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ac20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779778055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779853848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Abde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779777162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Afea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779776571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779776068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Acc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779776862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779775932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779783769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779802029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779777536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779783181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ae51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779776588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779778434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779777173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779780178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Aa78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779776917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779777882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779777449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779777864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779802566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779775706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779778064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779782621"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ab6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779778569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779777759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Aaa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779776135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Abcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779778291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779784554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779776565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779777577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779783481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779781068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779777302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779780852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779776445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Adcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779855421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779778075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Ac4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779783709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Ae323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779781391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779780058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Acd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779778055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779853848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779776571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779776068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779776862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779779829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779775932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779783769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Abe1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779802029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Aa953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779777536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator\u0026tag=1779783181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779776588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779778434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779776917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Aecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779777882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779777449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ab571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779777864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ad096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779802566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Ab7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779775706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779778064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Aef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779782621"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T08:49:45+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21710"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5a28f81d91d1302cbc3feda6378990c9a41044a6a4271d0f2d92b7f2af004bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7757e7829b2989e1ea7f54258d0073d138c573fd597e9cb18d06670f2c0f80f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7c1fc5588ff5f62113cd035cfe5951cceaeabc8dd2ac12551133c69638fd2ebe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:f01aa9a672f7e0a67940ada51df4830dc240a3ab496d8041f44b4391233a4fab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2ed1a612a3182f2d5669bbceb58f52194366b29414e00475ed0bc3443ab2d0d2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:65f31efc577c5258bd80750ef79cb07bf37572f6bf9292794688883d042eced4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:9e58618f5a0332c1ef488e858f9e8926755ed38978b48d597a6f067b89f128a3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f512e9dc436c44e55ab0b67662a902620765f2e382765780657701fe5fc8a1fd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:23153ff4810e3c6c235516b98335cbb3ef820d54331f0f21d3ed02aaf68ccb88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:57faf006f73ef0e5068ebc2c7586f056e17a5a6960c0f4b8bcff520c1b6f6b6a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5f0fdec46db1996b581bf9bc7466c3d4972a5e83b2da368d1e8809565301be8a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8cef00e86ae9bcd28a0202f8751a750b3a23616ebc4389e2aea1fdef3df9faf0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:095649b15adaaa403b01b8c6572f922775df452a31c33aa824edfdc57f2a8c73_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:19109a90632d26ea192e56b449e18404f7278da8d338ab53bf1fd29fac500f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:3e1f8846653c696e9ad88448d29c9ea3b9b35846d6cde860b6d0edb81ba40945_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9777a547838b7f8321566443beda0e889d5ff7944a27d2f8da6861a37eed030f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3ed9e3d732272b524718d1fb436cd51cf67fe355b6571f882e9cb754150331d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:4d2f4107bd19c176f97ad7745d344ae373e5cf2dbcf5579905e92e9836f2a9f7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b5fd460db0156040e3ef222a0bd9288599a2ecff2781778a71ad915570f1d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:934cc8ae86e0ee349fc6f3d55020b6da504909305ceb087be5f541acb5e82b81_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:5c5c8d850ffa936886d19c0d0e1740c43c53a9ac7292aedaabf16af9cc1f73c7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aa5f388188b2a5b406a91711a90922877ec9e721d10296238d357760590eb2aa_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:aac4d3e0a54227454ab90980c94991d5ed5efaba28443530d8ecac20a2df99dc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/metallb-rhel9@sha256:fea4dcd57738b25f5bc1645739659167a12915f4f94697225877eb37a32628ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:01a72f6796bcd94eb596bd5a074bddf8f4d26b29b4e6d1459db28d985731514a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:80e5b2256a9fbba0d19ba0c923dc421bba98530c5a1e428832b8c23bf3ebd17e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:dcc4cf61975d834897fcd68494ed65e514a3afd1e397b0e7f4b7ebcbeac0feab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:f614aca22bc91a64592d8c986ca3644f7b93393633c4217b040e5744a7c787c5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:50252d63399f0680023a493ced626bfad692b901e8d335551e05b79515647592_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:98e54df55703967027667c6ca8e02c36b8e21399f611d3b0e3b1e61cf10527c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c4ada06436c4bf6e94d339b91ac4ad81852dfc6b927c6b4cbe72db6f49da6456_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:dfeca246aecda552da18493ff1b449d195896b09dd03b8e1a8eff509e5e29bea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:ac55d83153de244d9f1c9b1f517ab1ba0869d75b14f425ffbbf2de00d8648c2d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:b6ce719ca77ae48c287d42295b4899d3221742bdc15ddd92df08f28ae4a2ac22_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:276999e6679ccc99b5e0b4b7417ab41b43588ad0414415f18d5c3fc269834cc3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:c52d4c89b804826addd714677f88deb3ddbb2b6140af499f525b10427dd7366b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6c299d2e8aa5776b2d7f3cda645b7dc034b1cea7fa5a540ae8a69195c8cc0bbe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:736f29cc7a958e399d2141df0bbd27f6aed49350696d0d50577fd6dba2027a58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:84dc2ec9682b521111c8f899847422ed3523d69543ff28d96843cdac73d10b33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:50260a1c0a1d0a9b7b66f62b68fdfa0ba5b2ee082ab14ca8e33f890c1477978a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:5de4825fc7d77c04c136e119a4f1dc0b24be680ffadab36aa65035d89132b197_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:8bd64c1fe02544c7a0467299e2bb3463f423ea1513441e70e78d36e6d4944709_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e323588b7cf8ef130a4430aee77cb0683a0dfc9f132726cdcd90b1b57b26f319_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:8a647900be2bb6c5276544fc97722fb0b6570d01c6983fc0ab4eed650e073779_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6f0d167ca16eac681d262a6b0a4ff81cf20d5dec8fd059a5e90460bf7c5532f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:c8771619915fd61a9cd9cece97d9757a769745fdfa958bff704f5c533203e25d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d182b8f8f67669f27ac1467b8348c355408a92d468dc1ef0d76c2d9d54da99c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:167d677c827d37ac408efe2a161d791db45e9d02f76ba495afb9384c82e215e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:38933cbb5c7a6828f12a462c5a03f5b4da54d1ec51ee2201e19fc70b3f635d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:a68eccd07b087731df33e6b0746dd4369332b16bead388aee9cf1847dd5cfc83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:aa33d1bbac72c3aca57ff72dcacf88778693814bb7738930b4093f43f38a2a17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:19ac4aa25ecc244444796bf0b193225ce1db253fa12e5fb3e664c56901bc5551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:3fc33b248c5505a1395182df9adfea558a4c97c906e193968b2a10b6525b9506_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:530b1763839f8f365a2cdde0a1faac4377abc9e354b47965a17b744eaa16435a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:cf267ea3888262958485c5064492790226446b10d067833a61577a14801692db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:4ca0dc8debefc64009eaa70d69cd868b8654b8361954be039ffa4f486fce4eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:9c9bcea9d00bbfd50fa64cadd993ca14b6d752457f6175801a1ae6ee784c15d2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b83c78cf2db7d85d5dea1d5379a5e463ed1ccb12994770262f4e7f834db5f570_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bcf014667b6b0a2e7e30bf4d4246732a8bee12b5638ff51b14e91aa73b22d2ee_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:2350c7d8e80eb7cc97384e198da0e77bb135629a56d4b9e1164f1855df3acfaf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:258c44a6209e2ea5df9ce5b4c8962047b2eb506061577bc3a9f7c3581230154b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:b088d69bbb286e4edbb3a726a9cc5851b6cc3d29d54de9d79fda6538340148a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:bea2dafd96529939fa9565c43e4f8957d68c698aa4f7027be50abbefbc5b3546_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:0d92b8b3f55a8fe68bd38b36181b0acb6dc6a57ea1e4acd2a41de73c303c754a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:88590df38eaeba0ce8944da43cfce932f290f4e1a45f32edc9502baf9f083138_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:a07a959f5cc37b82219e471adbe4e5bfc7c9650ff06594f5f438dbbd2fe313f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:b32f38638af76f59deeb7a4b3ddc943494105967852efee6becc71f4b633618c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:b322753979a2e3ec5de27b5887d573677fdab61bea26b55ea29d78cc5d5c4d26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-intel-netsec-vsp-rhel9@sha256:cf69d54b3b6cdca83e4d7b05e172db7a273398c9ab7def2f8a0804ca2b44cb05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:342ff11c59f63e5b2dfa0f631d8890f50ffacc0f5c5834c5d4416283f023944b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-cp-agent-rhel9@sha256:f4dd70dd563220111d8829d45fbf390818c18f056de37bc53749178cf05cc2a5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:37f850d9a2403b1435f863eeee875e77486d46a84cb1ba6f7330c35946e15e99_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-marvell-vsp-rhel9@sha256:85865edf1ccf0e03433e886f0ab7e090f54f63e6a8f08edbb0efe33105d8598c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:0683954a57a9227caeec27a1cd6a672b4a7d7e6d181d9f0f50e74f52d9d81344_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-dpu-network-resources-injector-rhel9@sha256:dd185eeabfef75666fb3cfb17031c1b948e06b2e8c02bce8dd6b97b5c54debb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:41b53d94906c21d451fd87ef84d6b873e817da13ebdbc74ff2a9e03118bb68ea_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:923ad8ca6d96c9f2512ae971eb213c8d597faede83ba05d3c854ac563a069ad1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b065bb0fa16a84abf914ca4438ce438e7c0565c0b07981c292807c1f5e64982a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:90dac4a9f8524990f46eb05ef42de0aff635c4db107c96f839927234c2c31bf3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:bde0a15dbd00d40dc5da076e303b3a9112b43ba4df9c3dcec03b31336d311af5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:cf1f44c6f5d45b06ba157b6acfe581777912d54bdb1e86b3bb614bf6b52df5ed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:04aa7ec997d4c54b0cb6cb4a299aed7441754874ca55daa3d30b31d00c706072_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:527097b9e7bc2ebd667a75456693c9a1e96a9fe2a8063b3b1a85d8796e52569e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:697bf2dd33d0c8cb4c36a13ba52a7a198e9c042650e53ac5d0566b130869b1df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:fc5390f32f6fc466ba8f3b27b598470ef3c819ad65be5195ba75da03501e6a25_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5d183e81b5af9f0f779d018a4fac1ec1446696a556e64e1d5fda0c80e333801_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b5eefd490a893f3c53e3aa21b6be9d8de465fe89290fa5682162ed5b8ac592aa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c20d5ba9a6069f87affc2fbc95c9c4a628f2e3743c7fdb49319bf31d06564434_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cd2adb78e87b2d6fea7306edc7b873361546dad38646f352d774b7a7734b6bdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:81971df5c63cc71b258a2dce004f3889c7ab06c9b96e69b3785ebfc9937d6f43_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9b34ec19d9a7756958f900806cd1655145cdc2f74dfdfa593a4f96cd21d28919_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ee6c7751195e5c5be2b51b9da667316c315f8e456d0d5000185d8f4c0925554d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f667b773296ad839647fbd09105cf2f25259982ca82cb353f079603258d641ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1fc994bcc7818df40b5ad28e9765f417d9911ce066ff8554fdddcc4525507adc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:78cd0c49c1594016ab5af02eacb319e8e75d79988e9e29125af6fa32b7a7537b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:889e164a0cd6e54dd9d4ea7d3d720a40df68dc1d6800b7c2b2552be296e68a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:cb27f7727618a5dbf5f8c3823433e100c7f13a2a3dfa449623ee37cec97ed077_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:491bec1f6fbd49f6635b0ac4616bd4b4572eb30ca2ff56453139e8ba87374903_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6e9a619ddee511fde25f660eba7ed32e9de21df1c311ef765d0281da0b1e7b95_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cfa2ead36b7369b955c737b1eb3bc0bb561c20581e2aba4fdbe66c275b63d648_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:d9031d3771327cedce105b630fea0a0cb07464d06d153dbf1cac57c4bb747013_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:69816b6aa95879e3a333301adc32c5deecd022810dfd37ba42fc000a06118bba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7059a92eec191d898d9ebcd2ac7395f24f95dcbd7bc02a09ea0cbe135c07a923_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7a04667ac7fbeac559bc2de834b5ea2bd0fd50bcc0dbfde435575edb23c1ab27_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:8bfc5db688272cf79b717ed341512dea592e250ba735a0b268e0ee5dcaa2518d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:675f40095de2d9d129199a9e56fc8af33ae56b97ae3eb027e739e24e211d4b37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:6ad601afd33d17cb63d20ed78b6ce5323a6a8a7df78db9361a40ecdc7b1dd262_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9a720033e21af1ce2490d68d0e15e3dbe08530d1b5df9eefaf42e84c257fe9e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:47e9c447cc2e1fc15ea98bcad074ac541560abfd111a2a1787fee2e1f7c9b59c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8ed07c2e61528bdd172a7b1490bf1ead3eff312457c753d06755ef518af4dc78_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:e7a2dc884770ece3fa6e78ab3f1ab42619d3050fa4d23250407d758e4e74ef60_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:02759851776a787fe4daa1187ccf8e45a0a5a3e555e67bff43c47dffb665ec7e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:3953724fa5a02e3668f0b70ffbee7fff53778fca662e83d8a5c5163de92bd183_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:79ff0e181fd1366615586abece7f1e70431fb93d8067b2b810b668af7a26ad20_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:cc617fc8a4cfa520bc1607cb046fce507143b407c45caba35bffd965b92138a7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:162543a7ddd9747777e3ef97519c6213f74bf5d4ef1a528498f7a479dc0c7971_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:215d3dec5df9b335a7024a86ab2786326d8d5f78b2f2370d95ac861ac19bb60d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2e152cfc10f7c1b84eaf9343abb2f5b147b81d59d60382b3419e228a1fbdaffd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:381b75f22dc3d1c10ce40a8060b7dde7dda6e9159b369f3205ea7f99b89a2e12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:530dd7a52df6b973bbe4ea8eec2b3bad891b6c4e5e5ad0385efd2340333c1a27_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:708c7813cbae1faf38b8a2f6f68766aa1e51d078fc72966026cd76aaa579f24d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:debf2af95909d8a1901d745fc78a3db7a372f7f0cac8de379682d46dd941d4d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:deea08ba81d825d2d90d995d4c2fe37447843e985b32c3bf25b866e50e7a334c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:104e31b0a5d8315e663c2157d2306b5011b406388c3b92c39d92878d82a1b234_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:7a283953310d162452275dd86c23de242c55a4b4e605603f1293fd1186fc3674_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:96f914962b286c67ff880acfddf4bc1163c679823473609842006965bf42ec7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e12ac917a39a9a217787d3de06346bc1b1525a5a32d92a9ab93aaf1ff25888f2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:19c229981292f3ebc77678eb76d8fa3ab4cec1748cd2e02c3cf42ab373184fc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:43b256eb3f4a8e9c5dbdff40d643e41fcdbaf5a64d1069ace680b9c1363c1105_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:4ddf848faf23824142eeea14a0a3305c90a4307ded7e1935f778098e50b61c48_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:bf5fd1584d42e9a78d03667372e6b4d89fb52e46244b845bad9f7e49a0cf13ef_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:162cbf43222d4c7943574f84f59e29f69b6996e1693db85ddee19832441a0718_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:671dd3ee25bb4a24ec5741cbb6b5d168d7af4e4e7e90a332913552ff6576efa0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:82d479f688707bc99139051c53e27bd3315bbf8b0ca5e26a58b0034eb7e9a9af_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:ecc186e40a145b4a9add13fd6449c35ebeadcae1cae6e4374aed1a4a63898b80_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:003aaeab02e56e3ea2d46cd0ac875f001f18939915fdd1bb6767a8e67e552877_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:38f95cd235512f20b8bc67b9e3d7029d1e287f3ef1de317cf8e7f56bd7b15025_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:77c3b55e366168b1eb1dbdf9482595d547b8cc0a69a1655a34c873c0d3487cab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:e4e21b77247e232520f9d4845eae864ce17bfd4405871e96fff633f6636ba5f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:584f7d95b82ae6e04d97b328ff1aed78b8ade0b02179394b99ba2f4823714b59_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6d7ed1bc1504105bbad73bc98c78a19074e81b9ea5fc1a090612086893f5130a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:7c5c032fd0cefd494506fbff4e98de4dc65b2f286787f97e08c98a1e7bff645b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:837d9b0b190a87e6037babecde6c7667f9e69fd044620da0fc795881b6a42ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:164584a33e963e71eabf0a1e5da36221762dd67a273141e0ad3545a7e82f65d3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:479a1835efcb315af7681a0c6e9cb959570e850a4cb5844a797390e27cd619c6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:6be7361f4c3a345589994dc785b2cd5da3c8123c6ad56211e4af5de232800f76_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b571e978313b76d176d741df9e7a16f625b5b2595e08ccfec54eac5752b74bd6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:77cbc769ad3a46d75d22c526c181cd0a669b2e94968a1b3a7b4a45ed786374de_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:7b7b706bc0c431f1961336b0b205c59ae8b87d89e05d54d038f67e7acfbc241c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8ad8a53e0df7112d0f4f0abc373bf24bbec42e3033f5b27dfe9e6be674cef94d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:be1ece01014d008bc61ad54fce48e71498a78eaeb8c6d174c039cae29da85055_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:568d7734e5bd64f9bd74b836810c1b89f2f481a4eb403d93b218604fa8a5ee62_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:89759baf09ad550a55ad632a08b11233176b36f87c0ecf89975f656a3aea6e98_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d096fcac75eaf2498f60577fee1408215df7f38ea2ad43f8a9b1595617621cd1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d7ee254fc9d47bd5179f76e4122983304ec75b5ea43f4defe2d0f96f04eb8690_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5142fd6ea06766233e916ee0564fdb02e75582c8154814da05f66e9695665f35_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:53454be47f37cfdc5715ff474c004f7cb350c6c22725a88988dc1d0b00e92c8a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b7cdda2dd3b84c39c9e63701e4d626b2c55057dab8c3096a31cae4bd3446e140_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:cc70de95764cdd38fd41500e34e40640782095a84a12a797981946a95dbfdd83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:03d4ecc2e0d6a4e81642b88d0582dba29d843e1e6653c77f11d2fa383849e9a1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7fccda1ff324927248587007f684dea1db2bfdd6d1943dd9c2d24a4a0ccda33e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a953d5f566a9e17992686be96d00a6531c02719908945449ba75f0f5fefcba15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e43211c222e1734a5443826afc1f1104b61457ef7b67647e5f608136a355d5d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:184ecc8ad8b5f6cd020868de8f488904fa3ef07de58a8ff66cece74dc11bf7e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:1aa2ed4bf1b3d4c8ff3e16db02fd59ba88c03b768f4351ced02358c9983d4b8b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:2fe836f8cad14a21042f0875c1ce0b99aaf827cfac22a6d1700fd4985995358c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:53fba2b18dd81bc3ffd78472e34b7dd98ec6afe5056f0ab2e0a6200ae8e56d79_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:474073763ac81e59ffd4cf45042455f0aa78556c58a9859e141780730c660ae5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:83bc7c78feb11e12c5ecd8aa07940bf12fb5864a66c2bd2f5bccd5c469f4f832_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:be4db0d99a9c9972020df599a40571a9163678e5d067027c964807508de96b3f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ef2bb7955d2d2c1089cb96281a096191b1d19c1655a58bed95a789cffee16c5d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:0ab4726763c33a37b4719954831e0b84292d7081bd227957acb35c8823d36f9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:14ad2de0e11ac44a364c3e4b9015dc99114a588c0ef462399b73d7bc17ccafae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:351f4f076c4df420646e48a61fd00d865712ad872024df784aae9bdede7d1434_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:54d13854332f531fdefd7e24d12ed274338e2838777249db7ba12a51baf62f7f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:442037ee562411e07147033b1f1f8c6af58097e4eead5dee7c07f19a89e08099_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4b5960069e0349827383fcb58af1d1535035a5dd2d49369839266cafb0fafdd0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:54efa12aad52ac4b535a4b7ed2204478fb133ea06038dc14dc07a0b159ba893d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6c743658c8e66756d499b3aeca70bd1b9b89ef2f4b37cc07988e714fb6452328_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03eaf119b0ce3baa0cb69cc19648b4eb15f7259fafe87d5b23f06f21dff4df2c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:219fc23f4289fade20653388474a6b35024cba262092c4d01e3491969ca5fa30_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:2fc3ba0438474153fdf7ce307aa4b2923cadee9319fef50383e383624d2b482b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e51481f741a7f7b1407aec762cd6b8c9f9f701e2b3a051da52c574a00b88f4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:0bf53c4590442cd9aa83424b7a5fe6b204ca0814ca65b73a0f92d7157d7e6895_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:2afee6a4269ba74e5bb9ba00979d385f08600f1bfadb77aa33afa567d1df4393_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:6d4582f32a65a2d24509a728b2fae9942ddd53a46299f6ec3b2acb3da0b1fecb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:309f2975276b6407402bd1ac0ef7a07e809845a33259283c28925ee2321271e8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:71edd9e131252d72242756270e02b75859134de7ccbb49bd109f9b3e349c2367_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:82b89b05b0e19cb7e0aaa47396de88871598a1e4bc7e635f3aa0714304b06fef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:a78152ed6846e27ae232ab194b9502b35abc69f2f15331f794b6cf85a14b8916_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:21769
Vulnerability from csaf_redhat - Published: 2026-05-28 20:39 - Updated: 2026-06-29 05:00No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker can exploit this vulnerability before authentication by sending a specially crafted WebSockets frame. This missing sanity check can trigger a server panic, leading to a Denial of Service (DoS) for affected deployments that use WebSockets and expose the network port to untrusted endpoints.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in NATS-Server. A remote attacker can exploit this vulnerability by connecting to a NATS-Server instance where the 'leafnode' configuration is enabled and compression is active. This pre-authentication flaw allows the attacker to trigger a server crash, resulting in a Denial of Service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
A flaw was found in NATS-Server. A remote attacker could exploit this vulnerability by manipulating MQTT (Message Queuing Telemetry Transport) Client IDs. This malfeasance allows for the hijacking of client sessions and messages. This could lead to unauthorized access to sensitive information or disruption of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in NATS-Server, a high-performance server for the NATS.io messaging system. For MQTT deployments utilizing usercodes and passwords, the MQTT passwords were mistakenly categorized as non-authenticating identity statements (JSON Web Tokens - JWT). This misclassification leads to the exposure of these passwords through monitoring endpoints, enabling an attacker with access to these endpoints to gain sensitive information.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in NATS-Server. When Access Control Lists (ACLs) were configured for message subjects, these controls were not correctly applied within the `$MQTT.>` namespace. This oversight allows MQTT clients to bypass the intended ACL checks, potentially granting unauthorized access to sensitive message subjects. This vulnerability could lead to information disclosure or unauthorized message manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker, by connecting to the leafnode port and sending a specially crafted malformed message before authentication, can cause the nats-server to crash. This vulnerability leads to a Denial of Service (DoS), making the server unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in NATS-Server. A malicious client connecting to the WebSockets port can cause unbounded memory use before authentication by sending a large amount of data. This resource exhaustion vulnerability can lead to a Denial of Service (DoS) for the server, making it unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in NATS-Server. If the NATS-Server is configured with static credentials provided through command-line arguments (argv) and the monitoring port is enabled, a remote attacker with access to the monitoring port can view these credentials. The /debug/vars endpoint on the monitoring port exposes an unredacted copy of the command-line arguments, leading to information disclosure of sensitive authentication details.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in etcd, a distributed key-value store. Unauthorized users can bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients. This allows them to access sensitive cluster topology information, disrupt operations through alarms, interfere with lease management, and trigger data compaction, leading to permanent data loss and disruption of critical workflows. This vulnerability can result in information disclosure and denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in golang.org/x/image. A remote attacker could exploit this vulnerability by providing a specially crafted WEBP image with an invalid, large size. This could cause the application to panic and crash on 32-bit platforms, leading to a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Moby, an open-source container framework. This vulnerability allows for a privilege validation bypass during `docker plugin install`. Due to an error in the daemon's privilege comparison logic, the system may incorrectly accept a plugin's requested privileges that differ from those approved by the user. This could lead to unauthorized privilege escalation for installed plugins.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Moby, an open-source container framework. This security vulnerability allows attackers to bypass authorization plugins (AuthZ), which are mechanisms designed to control access and permissions within the container environment. The bypass of these plugins can lead to unauthorized operations and potential compromise of the system's integrity and confidentiality.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in github.com/gomarkdown/markdown, a Go library for parsing Markdown text and rendering as HTML. A remote attacker could exploit this vulnerability by providing a specially crafted malformed input. Specifically, input containing a '<' character not followed by a '>' character, when processed by the SmartypantsRenderer, can lead to an out-of-bounds read or a panic. This can result in a denial of service (DoS) for the application, making it unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Workaround
|
A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings This issue affects Apache Thrift: before 0.23.0. Users are recommended to upgrade to version 0.23.0, which fixes the issue.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": "Multicluster Global Hub v1.5.4 general availability release images, which provide security fixes, bug fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact of Important. \nA Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE links in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat multicluster global hub is a set of components that enable you to import one or more hub clusters and manage them from a single hub cluster.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21769",
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21728",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27137",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27889",
"url": "https://access.redhat.com/security/cve/CVE-2026-27889"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29785",
"url": "https://access.redhat.com/security/cve/CVE-2026-29785"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32283",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32285",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33215",
"url": "https://access.redhat.com/security/cve/CVE-2026-33215"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33216",
"url": "https://access.redhat.com/security/cve/CVE-2026-33216"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33217",
"url": "https://access.redhat.com/security/cve/CVE-2026-33217"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33218",
"url": "https://access.redhat.com/security/cve/CVE-2026-33218"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33219",
"url": "https://access.redhat.com/security/cve/CVE-2026-33219"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33247",
"url": "https://access.redhat.com/security/cve/CVE-2026-33247"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33413",
"url": "https://access.redhat.com/security/cve/CVE-2026-33413"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33487",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33813",
"url": "https://access.redhat.com/security/cve/CVE-2026-33813"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33997",
"url": "https://access.redhat.com/security/cve/CVE-2026-33997"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34040",
"url": "https://access.redhat.com/security/cve/CVE-2026-34040"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40890",
"url": "https://access.redhat.com/security/cve/CVE-2026-40890"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41602",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41603",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41604",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41605",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41606",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41607",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41636",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-43869",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4427",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21769.json"
}
],
"title": "Red Hat Security Advisory: Multicluster Global Hub 1.5.4 security update",
"tracking": {
"current_release_date": "2026-06-29T05:00:04+00:00",
"generator": {
"date": "2026-06-29T05:00:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21769",
"initial_release_date": "2026-05-28T20:39:36+00:00",
"revision_history": [
{
"date": "2026-05-28T20:39:36+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-28T20:39:47+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:04+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Multicluster Global Hub 1.5.4",
"product": {
"name": "Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_globalhub:1.5::el9"
}
}
}
],
"category": "product_family",
"name": "Multicluster Global Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Ad91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1778867753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Adc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779828691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Ab70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779828813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-operator-bundle@sha256%3A8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle\u0026tag=1779837290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779828536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779835152"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1778867753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779828691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779828813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Ac985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779828536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779835152"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Afc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1778867753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Afb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779828691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779828813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779828536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3Aeaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779835152"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Ae26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1778867753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Adf44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779828691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Abb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779828813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Acffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779828536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779835152"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-21728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T09:00:58.144273+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461395"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "grafana/tempo: Tempo: Denial of Service via large queries",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"category": "external",
"summary": "RHBZ#2461395",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461395"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21728",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728"
},
{
"category": "external",
"summary": "https://grafana.com/security/security-advisories/cve-2026-21728",
"url": "https://grafana.com/security/security-advisories/cve-2026-21728"
}
],
"release_date": "2026-04-24T08:00:47.074000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "grafana/tempo: Tempo: Denial of Service via large queries"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-27889",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-25T20:01:58.261703+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451447"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker can exploit this vulnerability before authentication by sending a specially crafted WebSockets frame. This missing sanity check can trigger a server panic, leading to a Denial of Service (DoS) for affected deployments that use WebSockets and expose the network port to untrusted endpoints.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed WebSockets frame",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27889"
},
{
"category": "external",
"summary": "RHBZ#2451447",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451447"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27889",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27889"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27889",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27889"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-03.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-03.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-pq2q-rcw4-3hr6",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-pq2q-rcw4-3hr6"
}
],
"release_date": "2026-03-25T19:36:36.370000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed WebSockets frame"
},
{
"cve": "CVE-2026-29785",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-03-25T20:01:35.121898+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451444"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A remote attacker can exploit this vulnerability by connecting to a NATS-Server instance where the \u0027leafnode\u0027 configuration is enabled and compression is active. This pre-authentication flaw allows the attacker to trigger a server crash, resulting in a Denial of Service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via leafnode compression",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29785"
},
{
"category": "external",
"summary": "RHBZ#2451444",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451444"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29785",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29785"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29785",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29785"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-04.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-04.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/commit/a1488de6f2ba6e666aef0f9cce0016f7f167d6a8",
"url": "https://github.com/nats-io/nats-server/commit/a1488de6f2ba6e666aef0f9cce0016f7f167d6a8"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-52jh-2xxh-pwh6",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-52jh-2xxh-pwh6"
}
],
"release_date": "2026-03-25T19:38:44.587000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via leafnode compression"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32281",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2026-04-08T02:01:00.930989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-32285",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:54.925687+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451846"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"category": "external",
"summary": "RHBZ#2451846",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451846"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32285",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32285"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285"
},
{
"category": "external",
"summary": "https://github.com/buger/jsonparser/issues/275",
"url": "https://github.com/buger/jsonparser/issues/275"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4514",
"url": "https://github.com/golang/vulndb/issues/4514"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4514",
"url": "https://pkg.go.dev/vuln/GO-2026-4514"
}
],
"release_date": "2026-03-26T19:40:51.837000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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-33215",
"cwe": {
"id": "CWE-290",
"name": "Authentication Bypass by Spoofing"
},
"discovery_date": "2026-03-24T22:01:19.032191+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451021"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A remote attacker could exploit this vulnerability by manipulating MQTT (Message Queuing Telemetry Transport) Client IDs. This malfeasance allows for the hijacking of client sessions and messages. This could lead to unauthorized access to sensitive information or disruption of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: NATS-Server: Session and message hijacking via MQTT Client ID malfeasance",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33215"
},
{
"category": "external",
"summary": "RHBZ#2451021",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451021"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33215",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33215"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-06.tx",
"url": "https://advisories.nats.io/CVE/secnote-2026-06.tx"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-fcjp-h8cc-6879",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-fcjp-h8cc-6879"
}
],
"release_date": "2026-03-24T20:55:53.455000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "nats-server: NATS-Server: Session and message hijacking via MQTT Client ID malfeasance"
},
{
"cve": "CVE-2026-33216",
"cwe": {
"id": "CWE-213",
"name": "Exposure of Sensitive Information Due to Incompatible Policies"
},
"discovery_date": "2026-03-25T20:02:03.000174+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451448"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance server for the NATS.io messaging system. For MQTT deployments utilizing usercodes and passwords, the MQTT passwords were mistakenly categorized as non-authenticating identity statements (JSON Web Tokens - JWT). This misclassification leads to the exposure of these passwords through monitoring endpoints, enabling an attacker with access to these endpoints to gain sensitive information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Information disclosure of MQTT passwords through monitoring endpoints",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33216"
},
{
"category": "external",
"summary": "RHBZ#2451448",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451448"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33216",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33216"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33216",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33216"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-05.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-05.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/commit/b5b63cfc35a57075e09c1f57503d31721bed8099",
"url": "https://github.com/nats-io/nats-server/commit/b5b63cfc35a57075e09c1f57503d31721bed8099"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-v722-jcv5-w7mc",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-v722-jcv5-w7mc"
}
],
"release_date": "2026-03-25T19:41:55.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Information disclosure of MQTT passwords through monitoring endpoints"
},
{
"cve": "CVE-2026-33217",
"cwe": {
"id": "CWE-425",
"name": "Direct Request (\u0027Forced Browsing\u0027)"
},
"discovery_date": "2026-03-25T20:01:47.815937+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451446"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. When Access Control Lists (ACLs) were configured for message subjects, these controls were not correctly applied within the `$MQTT.\u003e` namespace. This oversight allows MQTT clients to bypass the intended ACL checks, potentially granting unauthorized access to sensitive message subjects. This vulnerability could lead to information disclosure or unauthorized message manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Access control bypass via unapplied ACLs in MQTT namespace",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33217"
},
{
"category": "external",
"summary": "RHBZ#2451446",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451446"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33217",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33217"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33217",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33217"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-07.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-07.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-jxxm-27vp-c3m5",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-jxxm-27vp-c3m5"
}
],
"release_date": "2026-03-25T19:43:40.969000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Access control bypass via unapplied ACLs in MQTT namespace"
},
{
"cve": "CVE-2026-33218",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-25T20:02:13.680355+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451450"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker, by connecting to the leafnode port and sending a specially crafted malformed message before authentication, can cause the nats-server to crash. This vulnerability leads to a Denial of Service (DoS), making the server unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed message pre-authentication on leafnode port",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33218"
},
{
"category": "external",
"summary": "RHBZ#2451450",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451450"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33218",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33218"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33218",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33218"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-10.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-10.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-vprv-35vv-q339",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-vprv-35vv-q339"
}
],
"release_date": "2026-03-25T19:53:12.075000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed message pre-authentication on leafnode port"
},
{
"cve": "CVE-2026-33219",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-03-25T20:01:41.235854+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451445"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A malicious client connecting to the WebSockets port can cause unbounded memory use before authentication by sending a large amount of data. This resource exhaustion vulnerability can lead to a Denial of Service (DoS) for the server, making it unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via unbounded memory use in WebSockets",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33219"
},
{
"category": "external",
"summary": "RHBZ#2451445",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451445"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33219",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33219"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33219",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33219"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-02.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-02.txt"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-11.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-11.txt"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-qrvq-68c2-7grw",
"url": "https://github.com/advisories/GHSA-qrvq-68c2-7grw"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-8r68-gvr4-jh7j",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-8r68-gvr4-jh7j"
}
],
"release_date": "2026-03-25T19:55:28.363000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via unbounded memory use in WebSockets"
},
{
"cve": "CVE-2026-33247",
"cwe": {
"id": "CWE-214",
"name": "Invocation of Process Using Visible Sensitive Information"
},
"discovery_date": "2026-03-25T21:02:07.985713+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451486"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. If the NATS-Server is configured with static credentials provided through command-line arguments (argv) and the monitoring port is enabled, a remote attacker with access to the monitoring port can view these credentials. The /debug/vars endpoint on the monitoring port exposes an unredacted copy of the command-line arguments, leading to information disclosure of sensitive authentication details.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Information disclosure of credentials via monitoring port and command-line arguments",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33247"
},
{
"category": "external",
"summary": "RHBZ#2451486",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451486"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33247",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33247"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33247",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33247"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-14.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-14.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-x6g4-f6q3-fqvv",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-x6g4-f6q3-fqvv"
}
],
"release_date": "2026-03-25T20:02:18.868000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Information disclosure of credentials via monitoring port and command-line arguments"
},
{
"cve": "CVE-2026-33413",
"cwe": {
"id": "CWE-306",
"name": "Missing Authentication for Critical Function"
},
"discovery_date": "2026-03-26T14:03:01.896580+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451728"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in etcd, a distributed key-value store. Unauthorized users can bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients. This allows them to access sensitive cluster topology information, disrupt operations through alarms, interfere with lease management, and trigger data compaction, leading to permanent data loss and disruption of critical workflows. This vulnerability can result in information disclosure and denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "etcd: etcd: Authorization bypass allows information disclosure and denial of service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in etcd allows unauthorized users to bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients and etcd\u0027s built-in authentication is enabled. This can lead to information disclosure and denial of service. Typical Red Hat OpenShift Container Platform and Kubernetes deployments are not affected, as the Kubernetes API server handles authentication and authorization independently of etcd\u0027s internal mechanisms.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Restrict network access to etcd server ports to ensure only trusted components can establish connections. Implement strong client identity at the transport layer, such as mTLS, with tightly scoped client certificate distribution. This will limit unauthorized access to etcd functions.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "etcd: etcd: Authorization bypass allows information disclosure and denial of service"
},
{
"cve": "CVE-2026-33487",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-26T18:02:32.278778+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451814"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "RHBZ#2451814",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451814"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33487",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33487"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc",
"url": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc"
}
],
"release_date": "2026-03-26T17:17:51.101000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue"
},
{
"cve": "CVE-2026-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
},
{
"cve": "CVE-2026-33813",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-21T20:01:02.224363+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460221"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang.org/x/image. A remote attacker could exploit this vulnerability by providing a specially crafted WEBP image with an invalid, large size. This could cause the application to panic and crash on 32-bit platforms, leading to a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/image: golang: golang.org/x/image: Denial of Service via malformed WEBP image parsing",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33813"
},
{
"category": "external",
"summary": "RHBZ#2460221",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460221"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33813",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33813"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33813",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33813"
},
{
"category": "external",
"summary": "https://go.dev/cl/759860",
"url": "https://go.dev/cl/759860"
},
{
"category": "external",
"summary": "https://go.dev/issue/78407",
"url": "https://go.dev/issue/78407"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4961",
"url": "https://pkg.go.dev/vuln/GO-2026-4961"
}
],
"release_date": "2026-04-21T19:21:27.644000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang.org/x/image: golang: golang.org/x/image: Denial of Service via malformed WEBP image parsing"
},
{
"cve": "CVE-2026-33997",
"cwe": {
"id": "CWE-266",
"name": "Incorrect Privilege Assignment"
},
"discovery_date": "2026-03-31T03:01:29.529297+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453277"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Moby, an open-source container framework. This vulnerability allows for a privilege validation bypass during `docker plugin install`. Due to an error in the daemon\u0027s privilege comparison logic, the system may incorrectly accept a plugin\u0027s requested privileges that differ from those approved by the user. This could lead to unauthorized privilege escalation for installed plugins.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "moby: docker: github.com/moby/moby: Moby: Privilege validation bypass during plugin installation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "An important flaw in Moby, an open-source container framework, allows for a privilege validation bypass during `docker plugin install`. This issue stems from an error in the daemon\u0027s privilege comparison logic, which could lead to unauthorized privilege escalation for installed plugins. Red Hat products that leverage Moby and allow Docker plugin installation are affected.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33997"
},
{
"category": "external",
"summary": "RHBZ#2453277",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453277"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33997",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33997"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33997",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33997"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/releases/tag/docker-v29.3.1",
"url": "https://github.com/moby/moby/releases/tag/docker-v29.3.1"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/security/advisories/GHSA-pxq6-2prw-chj9",
"url": "https://github.com/moby/moby/security/advisories/GHSA-pxq6-2prw-chj9"
}
],
"release_date": "2026-03-31T01:36:51.404000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "moby: docker: github.com/moby/moby: Moby: Privilege validation bypass during plugin installation"
},
{
"cve": "CVE-2026-34040",
"cwe": {
"id": "CWE-807",
"name": "Reliance on Untrusted Inputs in a Security Decision"
},
"discovery_date": "2026-03-31T03:01:34.530713+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453278"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Moby, an open-source container framework. This security vulnerability allows attackers to bypass authorization plugins (AuthZ), which are mechanisms designed to control access and permissions within the container environment. The bypass of these plugins can lead to unauthorized operations and potential compromise of the system\u0027s integrity and confidentiality.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Moby: Moby: Authorization bypass vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34040"
},
{
"category": "external",
"summary": "RHBZ#2453278",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453278"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34040",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34040"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34040",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34040"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/releases/tag/docker-v29.3.1",
"url": "https://github.com/moby/moby/releases/tag/docker-v29.3.1"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/security/advisories/GHSA-x744-4wpc-v9h2",
"url": "https://github.com/moby/moby/security/advisories/GHSA-x744-4wpc-v9h2"
}
],
"release_date": "2026-03-31T01:36:48.205000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 8.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "Moby: Moby: Authorization bypass vulnerability"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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-40890",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-04-21T20:02:56.729456+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460245"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/gomarkdown/markdown, a Go library for parsing Markdown text and rendering as HTML. A remote attacker could exploit this vulnerability by providing a specially crafted malformed input. Specifically, input containing a \u0027\u003c\u0027 character not followed by a \u0027\u003e\u0027 character, when processed by the SmartypantsRenderer, can lead to an out-of-bounds read or a panic. This can result in a denial of service (DoS) for the application, making it unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/gomarkdown/markdown: github.com/gomarkdown/markdown: Denial of Service via malformed Markdown input",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting Red Hat products that utilize the `github.com/gomarkdown/markdown` library. The vulnerability occurs when the `SmartypantsRenderer` processes specially crafted malformed Markdown input containing an unclosed \u0027\u003c\u0027 character, leading to an out-of-bounds read or application panic. A successful exploitation may lead the application using the library unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40890"
},
{
"category": "external",
"summary": "RHBZ#2460245",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460245"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40890",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40890"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40890",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40890"
},
{
"category": "external",
"summary": "https://github.com/gomarkdown/markdown/commit/759bbc3e32073c3bc4e25969c132fc520eda2778",
"url": "https://github.com/gomarkdown/markdown/commit/759bbc3e32073c3bc4e25969c132fc520eda2778"
},
{
"category": "external",
"summary": "https://github.com/gomarkdown/markdown/security/advisories/GHSA-77fj-vx54-gvh7",
"url": "https://github.com/gomarkdown/markdown/security/advisories/GHSA-77fj-vx54-gvh7"
}
],
"release_date": "2026-04-21T19:51:53.237000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_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": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/gomarkdown/markdown: github.com/gomarkdown/markdown: Denial of Service via malformed Markdown input"
},
{
"cve": "CVE-2026-41602",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:16.099816+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463407"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "RHBZ#2463407",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463407"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41602",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41602"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/6",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/6"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:06.646000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation"
},
{
"cve": "CVE-2026-41603",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-04-28T10:01:29.782287+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463411"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname Validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "RHBZ#2463411",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463411"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41603",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41603"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/7",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/7"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:40.564000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname Validation"
},
{
"cve": "CVE-2026-41604",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:47.903741+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463416"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "RHBZ#2463416",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463416"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41604",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41604"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/5",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/5"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:13.996000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41605",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:54.269412+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463418"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "RHBZ#2463418",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463418"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41605",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41605"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/4",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/4"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:44.319000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability"
},
{
"cve": "CVE-2026-41606",
"cwe": {
"id": "CWE-606",
"name": "Unchecked Input for Loop Condition"
},
"discovery_date": "2026-04-28T10:01:19.136351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463408"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "RHBZ#2463408",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463408"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41606",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41606"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/3",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/3"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:12.815000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion"
},
{
"cve": "CVE-2026-41607",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:33.022623+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463412"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "RHBZ#2463412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41607",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41607"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/2",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/2"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:48.502000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41636",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-04-28T10:01:03.992199+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463404"
}
],
"notes": [
{
"category": "description",
"text": "Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings\n\nThis issue affects Apache Thrift: before 0.23.0.\n\nUsers are recommended to upgrade to version 0.23.0, which fixes the issue.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "RHBZ#2463404",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463404"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41636",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41636"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/1",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/1"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:22:14.639000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion"
},
{
"cve": "CVE-2026-43869",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-05-05T08:00:56.417384+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466660"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"category": "external",
"summary": "RHBZ#2466660",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466660"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43869",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43869"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r",
"url": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r"
}
],
"release_date": "2026-05-05T07:25:48.611000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T20:39:36+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21769"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:62b308e48b973c04509efc66de4cdf11acc729625b75f86bab27de82a7230d14_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dc3c1cc6bdfbf29bf0182bacddcdde3de8517d294ca4f1516eda60f760ffe399_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:df44aad9c2e9fec1d734e494c069cb89fd7b8f33050cfe9db3bdaef4c4ad7cc3_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fb7cd20d1a90d19fcaddfffd01a94e39dbcc9c97fc9a70e5d7eaefc570fd2dd7_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:19014267212e075c68e50fecbe44eabaaadadae448b28b5cfbe3275f27f9fc93_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:42ab1234414fcdc369097e9c63bda3b4ea64c1e3eb87800a394898c91a2c43ad_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:b70fae10e34ad67aa1f347d2e1085a92e1a28666faa273fe3c0c01a4d0780777_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:bb02a2e251f898e1d34b6846001d13cc1e5454b071358556a77997f02f71401d_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:8959841bd45bb6a15ae4a88d37234b3ba36855be6d92e358fa363c6132ab6359_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:33a5f0de8fa49bd67233f9dc5f4f5858858961ecb3da4bcc5c146ce5be91bcd6_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:6b9b507650bf0997ed9828b3d0b69777805aa33dd5b2988a2ef5b3b2bee00dbc_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:74635c357ec4a8697076f015ac15853ee0259e0231620fa349d687be261beae4_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:eaae81482b89e7331d356ddadf8f698e5cfffc9ce4fb616f240f30c9f044ba59_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:176cfe7106e81ff28564ec2cf9e4041d0fcadc7b5ae7537a9cc6db63a8914e5c_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:48717ee862e1386928c2a20a3ed04464ad1fc3d519ef026a6fd615c13e22d51b_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c985ba79e21f5c623fa1b350963d6a8915043e06184cde6f2d813a5c349a4886_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:cffac2b05af519fbd27143d59321675ba8cfd2e4c1531fc15021bd8500987c62_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate validation"
}
]
}
RHSA-2026:21931
Vulnerability from csaf_redhat - Published: 2026-05-29 08:45 - Updated: 2026-06-29 05:00A flaw was found in undici. A remote attacker can exploit this vulnerability by sending a specially crafted compressed frame, known as a "decompression bomb," during permessage-deflate decompression. The undici WebSocket client does not properly limit the size of decompressed data, leading to unbounded memory consumption. This can cause the Node.js process to exhaust available memory, resulting in a denial of service (DoS) where the process crashes or becomes unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 | — |
Workaround
|
A flaw was found in undici. A remote attacker could exploit this vulnerability by sending a specially crafted WebSocket frame with an extremely large 64-bit length. This causes undici's ByteParser to overflow its internal calculations, leading to an invalid state and a fatal TypeError. The primary consequence is a Denial of Service (DoS), which terminates the process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 | — |
Workaround
|
A flaw was found in the undici WebSocket client. A remote malicious server can exploit this vulnerability by sending a WebSocket frame with an invalid `server_max_window_bits` parameter within the permessage-deflate extension. This improper validation causes the client's Node.js process to terminate, leading to a denial-of-service (DoS) condition for the client.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 | — |
Workaround
|
A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 | — |
Workaround
|
A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod's filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "The 1.20.5 GA release of Red Hat OpenShift Pipelines Operator..\nFor more details see [product documentation](https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines).",
"title": "Topic"
},
{
"category": "general",
"text": "The 1.20.5 release of Red Hat OpenShift Pipelines Operator.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21931",
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1526",
"url": "https://access.redhat.com/security/cve/CVE-2026-1526"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1528",
"url": "https://access.redhat.com/security/cve/CVE-2026-1528"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-2229",
"url": "https://access.redhat.com/security/cve/CVE-2026-2229"
},
{
"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-33211",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21931.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Pipelines Release 1.20.5",
"tracking": {
"current_release_date": "2026-06-29T05:00:05+00:00",
"generator": {
"date": "2026-06-29T05:00:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21931",
"initial_release_date": "2026-05-29T08:45:13+00:00",
"revision_history": [
{
"date": "2026-05-29T08:45:13+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-29T08:45:20+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Pipelines 1.2",
"product": {
"name": "Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_pipelines:1.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Pipelines"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3Aaa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1779910201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3Aff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1778858902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3A6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1778858839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3A4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1779509912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3Aca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3Ac3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3A7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3A7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1779865065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3A5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1779865001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3A2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1779865014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3A8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1779865064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3A4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1779539434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3A5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1779781652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3Aaddbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1778859456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3Afeaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1779257473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3Add4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1779912703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3Af41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1779912707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3Ab076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1779912885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3Ad7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1779824115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3A03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1779824192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3Af09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1779824120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3A0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1779824303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3A6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1779824367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3A92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1779824241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3A2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1779824365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3Ab3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1779824112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3Aa935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1779396594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3A4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1779396660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3Ad3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1779257875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3Ac4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1779257789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3Abc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1779257800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3Adaa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3Ae2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1779905396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3A7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1779905395"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3Af1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1779910201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3A31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1778858902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3A3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1778858839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3A71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1779509912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3A726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3A7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3A28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3Ab0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1779865065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3Ae59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1779865001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3Ad7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1779865014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3Ac6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1779865064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3A50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1779539434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3Af470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1779781652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3Aa7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1778859456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3Aeb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1779257473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3A8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1779912703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3A80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1779912707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3A728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1779912885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3A0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1779824115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3Ace50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1779824192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3A2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1779824120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3Aadeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1779824303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3A688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1779824367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3A9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1779824241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3A21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1779824365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3A921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1779824112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3Aacfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1779396594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3A722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1779396660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3A496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1779257875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3A182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1779257789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3A558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1779257800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3A517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3A815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1779905396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3Aa0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1779905395"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3A1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1779910201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3A85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1778858902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3Afad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1778858839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3Ac19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1779509912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3Adc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3A190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3A15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3Ae824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1779865065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3Aed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1779865001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3A965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1779865014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3Aab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1779865064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3A7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1779539434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3A3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1779781652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3A37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1778859456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3Aac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1779257473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3A36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1779912703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3Ad6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1779912707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3A94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1779912885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3Ad82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1779824115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3A39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1779824192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3A401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1779824120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3A03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1779824303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3Af40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1779824367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3Ae1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1779824241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3A65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1779824365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3Aa14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1779824112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3A962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1779396594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3Af2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1779396660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3Ac7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1779257875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3Ada61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1779257789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3A501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1779257800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3Af48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3A2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1779905396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3Aa972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1779905395"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3A629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1779910201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3A823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1778858902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3A37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1778858839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3Ac978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1779509912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3A354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3A7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3A5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1779813223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3A77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1779865065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3A0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1779865001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3Ab5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1779865014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3A745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1779865064"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3A0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1779539434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3Ae9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1779781652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3Acfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1778859456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3A5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1779257473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3A3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1779912703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3A9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1779912707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3A7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1779912885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3Af5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1779824115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3A4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1779824192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3Afa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1779824120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3Ae3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1779824303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3Aa4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1779824367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3Afa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1779824241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3Ac60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1779824365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3Abe936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1779824112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3A98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1779396594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3A7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1779396660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3A83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1779257875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3Abd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1779257789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3A2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1779257800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3A21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3A31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1779905396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3Aeaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1779905398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1779905395"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-1526",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-03-12T21:01:25.538271+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2447142"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in undici. A remote attacker can exploit this vulnerability by sending a specially crafted compressed frame, known as a \"decompression bomb,\" during permessage-deflate decompression. The undici WebSocket client does not properly limit the size of decompressed data, leading to unbounded memory consumption. This can cause the Node.js process to exhaust available memory, resulting in a denial of service (DoS) where the process crashes or becomes unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "undici: undici: Denial of Service via unbounded memory consumption during WebSocket permessage-deflate decompression",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1526"
},
{
"category": "external",
"summary": "RHBZ#2447142",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447142"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1526",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1526"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1526",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1526"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc7692",
"url": "https://datatracker.ietf.org/doc/html/rfc7692"
},
{
"category": "external",
"summary": "https://github.com/nodejs/undici/security/advisories/GHSA-vrm6-8vpv-qv8q",
"url": "https://github.com/nodejs/undici/security/advisories/GHSA-vrm6-8vpv-qv8q"
},
{
"category": "external",
"summary": "https://hackerone.com/reports/3481206",
"url": "https://hackerone.com/reports/3481206"
}
],
"release_date": "2026-03-12T20:08:05.950000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T08:45:13+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "undici: undici: Denial of Service via unbounded memory consumption during WebSocket permessage-deflate decompression"
},
{
"cve": "CVE-2026-1528",
"cwe": {
"id": "CWE-248",
"name": "Uncaught Exception"
},
"discovery_date": "2026-03-12T21:01:36.954017+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2447145"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in undici. A remote attacker could exploit this vulnerability by sending a specially crafted WebSocket frame with an extremely large 64-bit length. This causes undici\u0027s ByteParser to overflow its internal calculations, leading to an invalid state and a fatal TypeError. The primary consequence is a Denial of Service (DoS), which terminates the process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "undici: undici: Denial of Service via crafted WebSocket frame with large length",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1528"
},
{
"category": "external",
"summary": "RHBZ#2447145",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447145"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1528",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1528"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1528",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1528"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/nodejs/undici/security/advisories/GHSA-f269-vfmq-vjvj",
"url": "https://github.com/nodejs/undici/security/advisories/GHSA-f269-vfmq-vjvj"
},
{
"category": "external",
"summary": "https://hackerone.com/reports/3537648",
"url": "https://hackerone.com/reports/3537648"
}
],
"release_date": "2026-03-12T20:21:57.775000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T08:45:13+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "undici: undici: Denial of Service via crafted WebSocket frame with large length"
},
{
"cve": "CVE-2026-2229",
"cwe": {
"id": "CWE-248",
"name": "Uncaught Exception"
},
"discovery_date": "2026-03-12T21:01:29.187989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2447143"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the undici WebSocket client. A remote malicious server can exploit this vulnerability by sending a WebSocket frame with an invalid `server_max_window_bits` parameter within the permessage-deflate extension. This improper validation causes the client\u0027s Node.js process to terminate, leading to a denial-of-service (DoS) condition for the client.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "undici: Undici: Denial of Service via invalid WebSocket permessage-deflate extension parameter",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-2229"
},
{
"category": "external",
"summary": "RHBZ#2447143",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447143"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-2229",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-2229"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-2229",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2229"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc7692",
"url": "https://datatracker.ietf.org/doc/html/rfc7692"
},
{
"category": "external",
"summary": "https://github.com/nodejs/undici/security/advisories/GHSA-v9p9-hfj2-hcw8",
"url": "https://github.com/nodejs/undici/security/advisories/GHSA-v9p9-hfj2-hcw8"
},
{
"category": "external",
"summary": "https://hackerone.com/reports/3487486",
"url": "https://hackerone.com/reports/3487486"
},
{
"category": "external",
"summary": "https://nodejs.org/api/zlib.html#class-zlibinflateraw",
"url": "https://nodejs.org/api/zlib.html#class-zlibinflateraw"
}
],
"release_date": "2026-03-12T20:27:05.600000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T08:45:13+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "undici: Undici: Denial of Service via invalid WebSocket permessage-deflate extension parameter"
},
{
"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 Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T08:45:13+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
}
],
"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 Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"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 Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_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-05-29T08:45:13+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33211",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-24T00:02:20.093480+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450554"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod\u0027s filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to have the permission to create ResolutionRequests (e.g., by creating TaskRuns or PipelineRuns that use the git resolver) within at least one specific namespace, limiting the exposure of this issue to authenticated users. Also, an attacker can read any file readable by the resolver pod process, including cluster secrets, allowing an escalation of privileges from namespace-scoped access to cluster-wide access. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"category": "external",
"summary": "RHBZ#2450554",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450554"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33211",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33211"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c",
"url": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5",
"url": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd",
"url": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae",
"url": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e",
"url": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db",
"url": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78",
"url": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c",
"url": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c"
}
],
"release_date": "2026-03-23T23:55:54.089000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T08:45:13+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, restrict the creation of ResolutionRequests to trusted users and service accounts. Implement strict Role-Based Access Control (RBAC) policies to limit which tenants can create TaskRuns or PipelineRuns that utilize the Tekton Pipelines git resolver. This reduces the exposure by preventing unauthorized access to the resolver pod\u0027s filesystem.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.6,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T08:45:13+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21931"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c7e750a8230733a4f482aee3c4c000a67e52c8f5f149273e609b98fd18ddb10_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5d2a1ee4f9a0fbb0a9d56d7b6c1fd94241cdc02a9d192ee8f4e004f9f0dd0cd8_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:e9561cd2ffa12f446af4b3618bf99575084e7c0e2c8972c0a112dd1580fb0515_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:f470f482deeebe42ebc4fbc2c5c8ddae8c0c9e71ebb45abf150e1221b18e8621_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:37a363f8aab7c6bc87729d98ff32a44669e033ef1598cd6275262b3aec7a7950_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:a7a9fad55880a24ef13252871a7eac22efef85d4f50ea71979d97f7dba504fa7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:addbf352dd4cbb2b7fdf16ac57d2ff8d4a6f72701b3ac75a1194debbfbfc0e96_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:cfbf1f68e6896abb7f2795c49e51d2d607534555ba4b754eb79c90ff40955f99_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:5066441d93db8c875c341307083d71371fbf656d22036d1cdc6d07c5f4363e15_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:ac0f4351612091aceeb5de41e0776ad9fffce43c15cea5cf82e23655f9e83491_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:eb396c01ff2ff283850eff1469eda34bc964cc512bc33b031b62c89ebee45643_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:feaa053f49eb5d7f890647a0b6f365a80b82b18988a0f6d5467221bc52a6cb7e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:1a687d78104fa92356a6af1ef4b5564d8bfd8fa9bc1b02b7ccbdc598be190654_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:629e0d9b1ca93751ad9f19328ef65019179fa886d9029088380a429532dc6681_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:aa1af86676fae99c0e2f3ea50ca2ba44223ccb4289c884d65cfacdd286e85d31_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:f1ba93478d47803d30cf65bea363e7d6e660683e4a2245979f009117b6f6fe5c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:0edb8944b49cd12ee073cdcd26ce61e0ff95fac17b3133e1c4b939962f4b54ae_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d7f65bf6390c8d16e4db818d1d4133d289cda151a9d6c1196b106416971a9061_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:d82e2c22fc88b0069dfc535797a7fe50113ebbfc0b3492c952eff0ccd0496029_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:f5f7b0cd1a79d803b6027c264a041cde6fe8e6b9b26279ebc901e8ef4afa20f0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:03f625e0c0c406ce688b18485b8b310f7de4fec4e6fcd7eec6b31d8f0e5613e2_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:39656fa56396d5c31e25331d03948b3ad5067cc4119f24d9c0ad0f2185a8b9a0_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:4a4d0bf0eae7b1d07cf7a37a0bcbf862f9eacc0ff6a6aaaf935cbd20e90e67ed_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:ce50f39a31b70bad477cfe217341ac62328fc63d5380dd34547a494ce9f896bb_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:2108be73f60cb77d8e639d694429efee711e358f3b0d6a46068b0be1ce13a478_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:401db4e85fffd7670f702658dd1c02c07640f07667f66984a0b52ebd491062f9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:f09ace1d218c3e544591176706376fe7c30a0a83b332b4b11f6c0de5c0fdb622_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:fa4480d53c94a4865fe6924588cb17f52be93948abb76b5dac2356bf95d49af3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:3347495c87dcfaf7cdd83a156d7e1cd6a09b396ef028999aa28fcd5a48e10b0e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:36b014cee87baa0133e46de98b30fe82ad77d43c1c47b71b0d04f07be9fad035_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:8b0e8dde8551aedb5bf139e6874bd65b64c7e9a5b8b9e526fce4aea3555ed389_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:dd4d7d6476af68f3abdcc8744956696ffb795c3ad27f3cc5cfaa2078c2ddc394_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:80a6eac6c4024a0243fd1e3bece6950fdd436af1d3d31519c68c6216bffdb2db_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:9ea61da384e23d15b2697ff58050979289d6502a92e71c4f73076ef6afb15497_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:d6eecd7aed4c9203049f2bd4af8404cd88eedc475b81952ffa18fa3f49833882_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f41b3c09f0a242c0046ead5323ba0c3f06eb43fea00e2d3a7fada13b258618c0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:728413bd2e8c207f77f28c4ce9ba091c8a31dc89ae9a6954854e2d8ffc90f4b9_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7be076ea80acb3bfc7bd238040f9d18836d74ca277e48f01e6c09d3d4362bc8b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:94f036095f4eea072b7263f8da8abddaeb5853fd097b541e1805ccea011a2922_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:b076dbc3299ccef75271e0f3fb86f09ad9e156ec4219e614af784e2b075802f1_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:31e463230c4232cbf5e13ed9e76bc9b5f894001b9d760d816944087337bc7860_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:823c69233e431b32e55706f4340ac837d039605acedeaef0f6374653ce06844b_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:85a526a6c08a58a3ff695ff70937eb4c735fba30b9e0981cd54d71b7f6658b48_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ff701eddd468d6d31f919675728f6ff7eda16ccab81bb6c54837139565dc9513_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:3491440ceadc7c709ddce897963c3b1a1fd77503e0a07c46a57c85f1be821666_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:37007390276a95081a4548ed82b1019bbdb6fe08739eee21b5dae4cf2afc321f_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:6890c7c9ec7d3373daacdf38b05f264f01a000398b5155c372e55344d6db7d5d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:fad4474900ee01e7000636e77c110d5600cfd271190d8e953b4fe9625903b8a1_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:03c51c10474faf33ac9bd2cae679a0a5091d9fb28752d85189e90ebb319b4dae_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:0f39841e3aedc83a35a628de6ad913cb014eb0cac5c509ea0cd8d8e9b81237cb_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:adeaba6fa77e01bd3701a15e5bcef98c4c07f9216c9a593e90137649ec314e6b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e3e7004a6bc13d700baa136ad9de70a83bbf9360108ebfff60b9466ac43e7bcd_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4efb0a702cff8a3a1a811130d530a2f6a435a0833859b23bf3bbf6ea74428ec4_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:71050543c5e5d6efe3d72866b009920a59c48e48a0979b420c2ca2b6c35639df_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c19888fede5dd2c3cd136e039a44e9f708da8ce062a8642d531feeb1c856de3b_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:c978df3e7c87e5a40f9822bafbabd10b3a3f4ac470195837d954ade1844ac2f1_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:190ff21f125bd34c43eb1e0797f6e18111371064f07d8e945b561db8d1bfe66e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7fd678bf4a0670cb65b984c743d778a7d0e0f7c030f142caf81e7359d84eb4f1_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:7ffe79484c29848f22df0fb001fc8a71d3da9532af10b10d9373b57a27e6a567_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:c3daed688492b3e74a57e0816a4417050dd10d0ddcdf5bb57a3672bdc942c603_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:15dc2742bd0cf6519b256f959a88abb6158692251cfa46d9b497e459f8670cf3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:28fb55fa674c175fb2efd9381f353d80eb6b9bab9c3b67aec681f31192d5b4bf_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:5444dd0ff71afc44c43546d4c24597b1bc31c6b81de2fd8d740b39ec1a565492_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:7e118964792b7357b1a8f0c53d21b78eb0184ace92a7215d9d4e61c7e4774805_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:77632bee7a2160d03fedaf2e26598b35482211771f037afba114aabb2771dfc3_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:7fd0ca731f4f6e520e65e33a9a2cd30d6e0693be97b904a18d575064c5ce2355_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:b0be1b04cfc30984d757fd528f527c3e76a1b6a624437167620dd6fc5bbc0b26_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:e824a6e4c87bb571d4a41b0b1bf120e9c6485776ee4575977d5a402921508acb_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:0b165040657b16770b52a0cde7be46db0d6410e6d502b11e7b6053f9ad441c49_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:5e2e305f33c5679a522ffa17622d714a5662654754cbe3cf00952a0e835c89d0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:e59375c7643ac4d19d26f44b0de400c6a9d571ea64fdb80181948e7f5b15919b_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:ed489b4d27daec80e8670fc7d1aa7b703dd27406d36668a3d8d4815eaa5273e2_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:2c5dff36740f64a3abed73e06128e0d00e19b345071dd27740ab4ecb71cc143a_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:965ae7324c4853494f149f4e7adb5eced2347c20b5b35811ffd4b27a35a95b55_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:b5e0f970a87d4187beea256a9487ecef5375e5bdd5352f0beb5a035a626aa338_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d7b9fde9e7cbcca7e6e9cdf5bf8ccc8d05bbb3ad588863ba3d8e083dd4f67dd7_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:745e264c8d26750a2c009f6a19306b9b4d40bd001d0eb99d0104ba296ef4a85c_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:8d381b730eb73c4024afb44ec23c9dde692831a01dacb141fb2f2e1161fa8841_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:ab03345c9784023d9696d14660e6dca2afe5b8d122190f0186574d7b2bd01990_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:c6c150d7a07e0d8b014511b28d3cd06f25aaccebeadd1df99e93d8fad939674c_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:962ca057a56cef2859e10ceca06f767370cf05ec57e375725ddf6044ba0078a9_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:98a27612f013529ae41b4e0a243421b590325802f1a47115f1b69f6617a332d9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:a935079a39ac4dd552a18ae9fd3c06f0c7b23ebfc723c97b9b29f60007fa6d9e_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:acfd451104c5ecba17b8676b82a835129f15954ad811f6af39f56a9c102c99e2_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:4553cc0883b245081e39c3e2513017439d7ee011607ff4392a70069dfec4d38f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:722053e22ce9d90c49d145f139f8e2ff9c4f69cd0f5606a43522ecd03509f466_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:7310ddd00f332afbff27b423518c0458255de5281ae6ca7c529ae967660ae2e5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:f2e47d5fef1bdba7df04845304650ae7738d1c3204c3ffe5b109bcc085fb2161_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:688ddfd29723067958a2784a5ff3beb3e301e2dea97c2df8c45a5736ad80d180_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:6d9d9cd56c4f9b2d67385ce8d66ecb076b436541d4612ec28648bbdf366d4223_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:a4e4b36370e4d59dde0c7ed938b31697b439013477213fa15c2e67d68e3e6455_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f40b11eaef580dfac861c53ce530df38ed1453336e109705582864cb36a2cc63_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:496609cbbbe63cc7cab745b92de1bfa588df13302d0e81f386ace0401f767f77_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:83a157a8bbd5ca87aff941b4884fde977648e570fcf94960a69454a1b8dd93c5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c7e5928bd0c07c168a3f0f0946869f9e054cca2e5fd5015860b07d18328a8dd3_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:d3957e49b335b24cfcffa216dc7541bb6e64ebd71cebed7fc3b67c13efca9856_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:182e4681a826df69e4699a1c0e25fc4f6e65d84f5197520b4aa9fadc37ec8686_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bd55ce999ac34585ffdaeaeeb73a66b3983b1b2f8d6809ee7b68154bd65a0bc5_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:c4f356000858cec0c6888d5f560c6b06d7a2b3370dad295e8556566ee5576155_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:da61b62e427cd22470c39e9e6bd77eaf1d5233f2905933c07e94ebfa932660cd_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:2ac06f6e1ee2fddc4732cc9acada6c879dd4da4e3435b7daefd14f8587bbb32e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:501b5f4980f6aa8cf539976332f2ca06b2053f5c96821d229a89d59c8c328d05_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:558c9f8c773fae2c42173908d7b9d62cd40645a9677b26b90ca586ed8b55936d_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:bc5c6abd3e462c188df4151287d5f2f4c1416aafbbd6e3e7c96afaf73f688059_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:354f9fe9fda1a1b3d38723589a547533810ebceaca010abc92437d54b73ed601_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:726cc049c028bea24e6501a0007c7a53d29490d7c5b1488df443da92d3689ed0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:ca87fd048385531dad4fe8d7c11057f6c68f5c2f20dce3ef804db460950cacea_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:dc34bf85cccd7c621d0a55da040f155d67afece882bcfbed6645070f9ec97ab8_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:0acc644c9f8c4f2ec286d3a64e1da72a0f8ca59f81dae15724142a646b002ad0_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:4de2ee6f69927025effa047082d6183a0f8219d3ba2351ccf1818f2379e73a43_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:50e2d43dfc82695e0c7ff9fd6818c2bd50890bbd8f343636b0fe5f72e2dee0dc_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:7dc8df48eb43419f45c7b31044bb13880a9fd03a2568e704190248d5842ac806_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:92dffb3850038e6c8f6ed510565a98e4a5e602c114b07de0181caa7eca0a667f_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:9b3c2fe6cdfc661f965ff94cd0511bfa124b8b8a2bc5278d3aaa8c0da71f07b0_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:e1b48c0c82d5f77daf353c863a92a9ad2f952a8824a24f6f1a32d2a8c86f3cf4_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:fa867d7edcc9af8801db1fe879c358ab824383b2e6ccce63a196052d4330e0e9_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:21c6f80349f6c77250548ad94fd3a47d63267010ab11effa113cc625cbdb97cf_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:517e71186a2960673b575a5a37af45a24338b50d3d0f3b897460829374838acd_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:daa342ed0a58f82be9805fcf62a65557444632f35bf8053ef9dfd72ec631a62b_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:f48476396e73423117ac0d15b0ede55d5bf84e100c7fc8d7e02b4fe2b5620658_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:2508489896b165db52dd9d39895647a3a72ae0aa2e3882cdce720124dcddaf5e_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:31209ef49be245f7f1846112b467ac153298e3c96fbc18212d685f389c4bf422_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:815fe726b4e83ffa4daaf5c88a8cf56cbb8db9d16074718769b80df6e97a6e53_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e2d006c7a3830ac944a94e928817e1b52f3319c2d166c497dd9357817a2d7ec0_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7bb390b3425fd43ab21840088bda5fd58ca9e68bce090776fa1ae4c3ba0997db_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a0d6c2120090d8db7d4bb99e12eba89069c5c96a4163e4bdc63f2535dae4e6aa_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:a972a3d3d5f13d86a50844a23f781cb4a061694337242dbc0ea6cbbd1a9870a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:eaba273d7abc3e0b34129e8846d7ae101b3d462e08b39c189f46f5983820da26_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0c0ee766f4d649a591f73ab407ca4e7fe71d2adaa98ad73ec4f2ce448da2ec31_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0f0cd09b43fc85b44c2b8bfe7eda25b72994ef3595c4a8edc3d3d4220a7f45f6_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:569783ca369f98e9269a5c731a2c7ed87442f84c5f9ad7a12cbf59945201ceb3_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:9c4a10520395dd1b5aa1bbe6459daf41c35500296653dedd9711b29495b77721_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:21cc58db3395a4c82db40d1202a03a63ad709e31a6d7d406cf5ff8266b936961_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:2390badfab84b2eb3c5eae8151d1a0473b6e21ed08cf9cfb380c07ee80d2c1e7_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:65a46dc0c49e44fc6daa65c975f4b9d079eea7bb14a6454c45caed6634a328a6_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:c60aa4bb8fe8f98e9483281fc1c7f716a5264d1eeba211751c34151f9a15752e_amd64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:921c1f61c9752e711691cd27f26844b1c28e0d97d90e2bfd9a6c78ece6099655_ppc64le",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:a14c26b8da62ba6ff188a81805f3874c147342ca59a6b2d81cd40f913fd95901_s390x",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:b3f2eb946f47b2e28422369c63050c60ea740517a81d37ffa7d215579b46231d_arm64",
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:be936aa63ffd77dc04d9c6f343864f34380352bff87e59d6bc60e9e6cc2a21d1_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:21932
Vulnerability from csaf_redhat - Published: 2026-05-29 09:15 - Updated: 2026-06-29 05:00A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod's filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "The 1.20.5 GA release of Red Hat OpenShift Pipelines Operator..\nFor more details see [product documentation](https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines).",
"title": "Topic"
},
{
"category": "general",
"text": "The 1.20.5 release of Red Hat OpenShift Pipelines Operator.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21932",
"url": "https://access.redhat.com/errata/RHSA-2026:21932"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33211",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21932.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Pipelines Release 1.20.5",
"tracking": {
"current_release_date": "2026-06-29T05:00:05+00:00",
"generator": {
"date": "2026-06-29T05:00:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:21932",
"initial_release_date": "2026-05-29T09:15:29+00:00",
"revision_history": [
{
"date": "2026-05-29T09:15:29+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-29T09:15:34+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Pipelines 1.2",
"product": {
"name": "Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_pipelines:1.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Pipelines"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-bundle@sha256%3Af4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle\u0026tag=1780044955"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64 as a component of Red Hat OpenShift Pipelines 1.2",
"product_id": "Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_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-05-29T09:15:29+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21932"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33211",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-24T00:02:20.093480+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450554"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod\u0027s filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to have the permission to create ResolutionRequests (e.g., by creating TaskRuns or PipelineRuns that use the git resolver) within at least one specific namespace, limiting the exposure of this issue to authenticated users. Also, an attacker can read any file readable by the resolver pod process, including cluster secrets, allowing an escalation of privileges from namespace-scoped access to cluster-wide access. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"category": "external",
"summary": "RHBZ#2450554",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450554"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33211",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33211"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c",
"url": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5",
"url": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd",
"url": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae",
"url": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e",
"url": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db",
"url": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78",
"url": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c",
"url": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c"
}
],
"release_date": "2026-03-23T23:55:54.089000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T09:15:29+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21932"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, restrict the creation of ResolutionRequests to trusted users and service accounts. Implement strict Role-Based Access Control (RBAC) policies to limit which tenants can create TaskRuns or PipelineRuns that utilize the Tekton Pipelines git resolver. This reduces the exposure by preventing unauthorized access to the resolver pod\u0027s filesystem.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.6,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-29T09:15:29+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21932"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.2:registry.redhat.io/openshift-pipelines/pipelines-operator-bundle@sha256:f4100f181620f5424e66633dbdd3c7402c8db75f93c54fe092ff2301d8dd0015_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:22347
Vulnerability from csaf_redhat - Published: 2026-06-01 22:12 - Updated: 2026-06-29 05:00No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker can exploit this vulnerability before authentication by sending a specially crafted WebSockets frame. This missing sanity check can trigger a server panic, leading to a Denial of Service (DoS) for affected deployments that use WebSockets and expose the network port to untrusted endpoints.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in NATS-Server. A remote attacker can exploit this vulnerability by connecting to a NATS-Server instance where the 'leafnode' configuration is enabled and compression is active. This pre-authentication flaw allows the attacker to trigger a server crash, resulting in a Denial of Service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
A flaw was found in NATS-Server. A remote attacker could exploit this vulnerability by manipulating MQTT (Message Queuing Telemetry Transport) Client IDs. This malfeasance allows for the hijacking of client sessions and messages. This could lead to unauthorized access to sensitive information or disruption of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in NATS-Server, a high-performance server for the NATS.io messaging system. For MQTT deployments utilizing usercodes and passwords, the MQTT passwords were mistakenly categorized as non-authenticating identity statements (JSON Web Tokens - JWT). This misclassification leads to the exposure of these passwords through monitoring endpoints, enabling an attacker with access to these endpoints to gain sensitive information.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in NATS-Server. When Access Control Lists (ACLs) were configured for message subjects, these controls were not correctly applied within the `$MQTT.>` namespace. This oversight allows MQTT clients to bypass the intended ACL checks, potentially granting unauthorized access to sensitive message subjects. This vulnerability could lead to information disclosure or unauthorized message manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker, by connecting to the leafnode port and sending a specially crafted malformed message before authentication, can cause the nats-server to crash. This vulnerability leads to a Denial of Service (DoS), making the server unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in NATS-Server. A malicious client connecting to the WebSockets port can cause unbounded memory use before authentication by sending a large amount of data. This resource exhaustion vulnerability can lead to a Denial of Service (DoS) for the server, making it unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in NATS-Server. If the NATS-Server is configured with static credentials provided through command-line arguments (argv) and the monitoring port is enabled, a remote attacker with access to the monitoring port can view these credentials. The /debug/vars endpoint on the monitoring port exposes an unredacted copy of the command-line arguments, leading to information disclosure of sensitive authentication details.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in etcd, a distributed key-value store. Unauthorized users can bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients. This allows them to access sensitive cluster topology information, disrupt operations through alarms, interfere with lease management, and trigger data compaction, leading to permanent data loss and disruption of critical workflows. This vulnerability can result in information disclosure and denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in golang.org/x/image. A remote attacker could exploit this vulnerability by providing a specially crafted WEBP image with an invalid, large size. This could cause the application to panic and crash on 32-bit platforms, leading to a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Moby, an open-source container framework. This vulnerability allows for a privilege validation bypass during `docker plugin install`. Due to an error in the daemon's privilege comparison logic, the system may incorrectly accept a plugin's requested privileges that differ from those approved by the user. This could lead to unauthorized privilege escalation for installed plugins.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Moby, an open-source container framework. This security vulnerability allows attackers to bypass authorization plugins (AuthZ), which are mechanisms designed to control access and permissions within the container environment. The bypass of these plugins can lead to unauthorized operations and potential compromise of the system's integrity and confidentiality.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in github.com/gomarkdown/markdown, a Go library for parsing Markdown text and rendering as HTML. A remote attacker could exploit this vulnerability by providing a specially crafted malformed input. Specifically, input containing a '<' character not followed by a '>' character, when processed by the SmartypantsRenderer, can lead to an out-of-bounds read or a panic. This can result in a denial of service (DoS) for the application, making it unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings This issue affects Apache Thrift: before 0.23.0. Users are recommended to upgrade to version 0.23.0, which fixes the issue.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Multicluster Global Hub v1.4.5 general availability release images, which provide security fixes, bug fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact of Important. \nA Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE links in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat multicluster global hub is a set of components that enable you to import one or more hub clusters and manage them from a single hub cluster.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:22347",
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21728",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27137",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27889",
"url": "https://access.redhat.com/security/cve/CVE-2026-27889"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29785",
"url": "https://access.redhat.com/security/cve/CVE-2026-29785"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32283",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32285",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33215",
"url": "https://access.redhat.com/security/cve/CVE-2026-33215"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33216",
"url": "https://access.redhat.com/security/cve/CVE-2026-33216"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33217",
"url": "https://access.redhat.com/security/cve/CVE-2026-33217"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33218",
"url": "https://access.redhat.com/security/cve/CVE-2026-33218"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33219",
"url": "https://access.redhat.com/security/cve/CVE-2026-33219"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33247",
"url": "https://access.redhat.com/security/cve/CVE-2026-33247"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33413",
"url": "https://access.redhat.com/security/cve/CVE-2026-33413"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33487",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33813",
"url": "https://access.redhat.com/security/cve/CVE-2026-33813"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33997",
"url": "https://access.redhat.com/security/cve/CVE-2026-33997"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34040",
"url": "https://access.redhat.com/security/cve/CVE-2026-34040"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40890",
"url": "https://access.redhat.com/security/cve/CVE-2026-40890"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41602",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41603",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41604",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41605",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41606",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41607",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41636",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-43869",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4427",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_22347.json"
}
],
"title": "Red Hat Security Advisory: Multicluster Global Hub 1.4.5 security update",
"tracking": {
"current_release_date": "2026-06-29T05:00:07+00:00",
"generator": {
"date": "2026-06-29T05:00:07+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22347",
"initial_release_date": "2026-06-01T22:12:17+00:00",
"revision_history": [
{
"date": "2026-06-01T22:12:17+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-01T22:12:25+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:07+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Multicluster Global Hub 1.4.5",
"product": {
"name": "Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_globalhub:1.4::el9"
}
}
}
],
"category": "product_family",
"name": "Multicluster Global Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779579439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779838819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779839447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-operator-bundle@sha256%3Afcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle\u0026tag=1779891163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779887217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779147132"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Ae893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779579439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779838819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779839447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779887217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779147132"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Acdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779579439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Af4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779838819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779839447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779887217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779147132"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779579439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779838819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Ae558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779839447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779887217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779147132"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-21728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T09:00:58.144273+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461395"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "grafana/tempo: Tempo: Denial of Service via large queries",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"category": "external",
"summary": "RHBZ#2461395",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461395"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21728",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728"
},
{
"category": "external",
"summary": "https://grafana.com/security/security-advisories/cve-2026-21728",
"url": "https://grafana.com/security/security-advisories/cve-2026-21728"
}
],
"release_date": "2026-04-24T08:00:47.074000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "grafana/tempo: Tempo: Denial of Service via large queries"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-27889",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-25T20:01:58.261703+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451447"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker can exploit this vulnerability before authentication by sending a specially crafted WebSockets frame. This missing sanity check can trigger a server panic, leading to a Denial of Service (DoS) for affected deployments that use WebSockets and expose the network port to untrusted endpoints.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed WebSockets frame",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27889"
},
{
"category": "external",
"summary": "RHBZ#2451447",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451447"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27889",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27889"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27889",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27889"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-03.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-03.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-pq2q-rcw4-3hr6",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-pq2q-rcw4-3hr6"
}
],
"release_date": "2026-03-25T19:36:36.370000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed WebSockets frame"
},
{
"cve": "CVE-2026-29785",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-03-25T20:01:35.121898+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451444"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A remote attacker can exploit this vulnerability by connecting to a NATS-Server instance where the \u0027leafnode\u0027 configuration is enabled and compression is active. This pre-authentication flaw allows the attacker to trigger a server crash, resulting in a Denial of Service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via leafnode compression",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29785"
},
{
"category": "external",
"summary": "RHBZ#2451444",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451444"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29785",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29785"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29785",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29785"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-04.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-04.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/commit/a1488de6f2ba6e666aef0f9cce0016f7f167d6a8",
"url": "https://github.com/nats-io/nats-server/commit/a1488de6f2ba6e666aef0f9cce0016f7f167d6a8"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-52jh-2xxh-pwh6",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-52jh-2xxh-pwh6"
}
],
"release_date": "2026-03-25T19:38:44.587000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via leafnode compression"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32281",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2026-04-08T02:01:00.930989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "RHBZ#2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32281"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://go.dev/cl/758061",
"url": "https://go.dev/cl/758061"
},
{
"category": "external",
"summary": "https://go.dev/issue/78281",
"url": "https://go.dev/issue/78281"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4946",
"url": "https://pkg.go.dev/vuln/GO-2026-4946"
}
],
"release_date": "2026-04-08T01:06:58.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "RHBZ#2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32283",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32283"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://go.dev/cl/763767",
"url": "https://go.dev/cl/763767"
},
{
"category": "external",
"summary": "https://go.dev/issue/78334",
"url": "https://go.dev/issue/78334"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4870",
"url": "https://pkg.go.dev/vuln/GO-2026-4870"
}
],
"release_date": "2026-04-08T01:06:57.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-32285",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:54.925687+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451846"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"category": "external",
"summary": "RHBZ#2451846",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451846"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32285",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32285"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285"
},
{
"category": "external",
"summary": "https://github.com/buger/jsonparser/issues/275",
"url": "https://github.com/buger/jsonparser/issues/275"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4514",
"url": "https://github.com/golang/vulndb/issues/4514"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4514",
"url": "https://pkg.go.dev/vuln/GO-2026-4514"
}
],
"release_date": "2026-03-26T19:40:51.837000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33215",
"cwe": {
"id": "CWE-290",
"name": "Authentication Bypass by Spoofing"
},
"discovery_date": "2026-03-24T22:01:19.032191+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451021"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A remote attacker could exploit this vulnerability by manipulating MQTT (Message Queuing Telemetry Transport) Client IDs. This malfeasance allows for the hijacking of client sessions and messages. This could lead to unauthorized access to sensitive information or disruption of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: NATS-Server: Session and message hijacking via MQTT Client ID malfeasance",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33215"
},
{
"category": "external",
"summary": "RHBZ#2451021",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451021"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33215",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33215"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-06.tx",
"url": "https://advisories.nats.io/CVE/secnote-2026-06.tx"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-fcjp-h8cc-6879",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-fcjp-h8cc-6879"
}
],
"release_date": "2026-03-24T20:55:53.455000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "nats-server: NATS-Server: Session and message hijacking via MQTT Client ID malfeasance"
},
{
"cve": "CVE-2026-33216",
"cwe": {
"id": "CWE-213",
"name": "Exposure of Sensitive Information Due to Incompatible Policies"
},
"discovery_date": "2026-03-25T20:02:03.000174+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451448"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance server for the NATS.io messaging system. For MQTT deployments utilizing usercodes and passwords, the MQTT passwords were mistakenly categorized as non-authenticating identity statements (JSON Web Tokens - JWT). This misclassification leads to the exposure of these passwords through monitoring endpoints, enabling an attacker with access to these endpoints to gain sensitive information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Information disclosure of MQTT passwords through monitoring endpoints",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33216"
},
{
"category": "external",
"summary": "RHBZ#2451448",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451448"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33216",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33216"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33216",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33216"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-05.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-05.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/commit/b5b63cfc35a57075e09c1f57503d31721bed8099",
"url": "https://github.com/nats-io/nats-server/commit/b5b63cfc35a57075e09c1f57503d31721bed8099"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-v722-jcv5-w7mc",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-v722-jcv5-w7mc"
}
],
"release_date": "2026-03-25T19:41:55.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Information disclosure of MQTT passwords through monitoring endpoints"
},
{
"cve": "CVE-2026-33217",
"cwe": {
"id": "CWE-425",
"name": "Direct Request (\u0027Forced Browsing\u0027)"
},
"discovery_date": "2026-03-25T20:01:47.815937+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451446"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. When Access Control Lists (ACLs) were configured for message subjects, these controls were not correctly applied within the `$MQTT.\u003e` namespace. This oversight allows MQTT clients to bypass the intended ACL checks, potentially granting unauthorized access to sensitive message subjects. This vulnerability could lead to information disclosure or unauthorized message manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Access control bypass via unapplied ACLs in MQTT namespace",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33217"
},
{
"category": "external",
"summary": "RHBZ#2451446",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451446"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33217",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33217"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33217",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33217"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-07.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-07.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-jxxm-27vp-c3m5",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-jxxm-27vp-c3m5"
}
],
"release_date": "2026-03-25T19:43:40.969000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Access control bypass via unapplied ACLs in MQTT namespace"
},
{
"cve": "CVE-2026-33218",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-25T20:02:13.680355+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451450"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker, by connecting to the leafnode port and sending a specially crafted malformed message before authentication, can cause the nats-server to crash. This vulnerability leads to a Denial of Service (DoS), making the server unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed message pre-authentication on leafnode port",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33218"
},
{
"category": "external",
"summary": "RHBZ#2451450",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451450"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33218",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33218"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33218",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33218"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-10.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-10.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-vprv-35vv-q339",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-vprv-35vv-q339"
}
],
"release_date": "2026-03-25T19:53:12.075000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed message pre-authentication on leafnode port"
},
{
"cve": "CVE-2026-33219",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-03-25T20:01:41.235854+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451445"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A malicious client connecting to the WebSockets port can cause unbounded memory use before authentication by sending a large amount of data. This resource exhaustion vulnerability can lead to a Denial of Service (DoS) for the server, making it unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via unbounded memory use in WebSockets",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33219"
},
{
"category": "external",
"summary": "RHBZ#2451445",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451445"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33219",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33219"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33219",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33219"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-02.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-02.txt"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-11.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-11.txt"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-qrvq-68c2-7grw",
"url": "https://github.com/advisories/GHSA-qrvq-68c2-7grw"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-8r68-gvr4-jh7j",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-8r68-gvr4-jh7j"
}
],
"release_date": "2026-03-25T19:55:28.363000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via unbounded memory use in WebSockets"
},
{
"cve": "CVE-2026-33247",
"cwe": {
"id": "CWE-214",
"name": "Invocation of Process Using Visible Sensitive Information"
},
"discovery_date": "2026-03-25T21:02:07.985713+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451486"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. If the NATS-Server is configured with static credentials provided through command-line arguments (argv) and the monitoring port is enabled, a remote attacker with access to the monitoring port can view these credentials. The /debug/vars endpoint on the monitoring port exposes an unredacted copy of the command-line arguments, leading to information disclosure of sensitive authentication details.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Information disclosure of credentials via monitoring port and command-line arguments",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33247"
},
{
"category": "external",
"summary": "RHBZ#2451486",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451486"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33247",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33247"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33247",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33247"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-14.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-14.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-x6g4-f6q3-fqvv",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-x6g4-f6q3-fqvv"
}
],
"release_date": "2026-03-25T20:02:18.868000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Information disclosure of credentials via monitoring port and command-line arguments"
},
{
"cve": "CVE-2026-33413",
"cwe": {
"id": "CWE-306",
"name": "Missing Authentication for Critical Function"
},
"discovery_date": "2026-03-26T14:03:01.896580+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451728"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in etcd, a distributed key-value store. Unauthorized users can bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients. This allows them to access sensitive cluster topology information, disrupt operations through alarms, interfere with lease management, and trigger data compaction, leading to permanent data loss and disruption of critical workflows. This vulnerability can result in information disclosure and denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "etcd: etcd: Authorization bypass allows information disclosure and denial of service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in etcd allows unauthorized users to bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients and etcd\u0027s built-in authentication is enabled. This can lead to information disclosure and denial of service. Typical Red Hat OpenShift Container Platform and Kubernetes deployments are not affected, as the Kubernetes API server handles authentication and authorization independently of etcd\u0027s internal mechanisms.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33413"
},
{
"category": "external",
"summary": "RHBZ#2451728",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451728"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33413",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33413"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33413",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33413"
},
{
"category": "external",
"summary": "https://github.com/etcd-io/etcd/security/advisories/GHSA-q8m4-xhhv-38mg",
"url": "https://github.com/etcd-io/etcd/security/advisories/GHSA-q8m4-xhhv-38mg"
}
],
"release_date": "2026-03-26T13:36:10.919000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Restrict network access to etcd server ports to ensure only trusted components can establish connections. Implement strong client identity at the transport layer, such as mTLS, with tightly scoped client certificate distribution. This will limit unauthorized access to etcd functions.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "etcd: etcd: Authorization bypass allows information disclosure and denial of service"
},
{
"cve": "CVE-2026-33487",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-26T18:02:32.278778+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451814"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "RHBZ#2451814",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451814"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33487",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33487"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc",
"url": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc"
}
],
"release_date": "2026-03-26T17:17:51.101000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue"
},
{
"cve": "CVE-2026-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
},
{
"cve": "CVE-2026-33813",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-21T20:01:02.224363+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460221"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang.org/x/image. A remote attacker could exploit this vulnerability by providing a specially crafted WEBP image with an invalid, large size. This could cause the application to panic and crash on 32-bit platforms, leading to a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/image: golang: golang.org/x/image: Denial of Service via malformed WEBP image parsing",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33813"
},
{
"category": "external",
"summary": "RHBZ#2460221",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460221"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33813",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33813"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33813",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33813"
},
{
"category": "external",
"summary": "https://go.dev/cl/759860",
"url": "https://go.dev/cl/759860"
},
{
"category": "external",
"summary": "https://go.dev/issue/78407",
"url": "https://go.dev/issue/78407"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4961",
"url": "https://pkg.go.dev/vuln/GO-2026-4961"
}
],
"release_date": "2026-04-21T19:21:27.644000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang.org/x/image: golang: golang.org/x/image: Denial of Service via malformed WEBP image parsing"
},
{
"cve": "CVE-2026-33997",
"cwe": {
"id": "CWE-266",
"name": "Incorrect Privilege Assignment"
},
"discovery_date": "2026-03-31T03:01:29.529297+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453277"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Moby, an open-source container framework. This vulnerability allows for a privilege validation bypass during `docker plugin install`. Due to an error in the daemon\u0027s privilege comparison logic, the system may incorrectly accept a plugin\u0027s requested privileges that differ from those approved by the user. This could lead to unauthorized privilege escalation for installed plugins.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "moby: docker: github.com/moby/moby: Moby: Privilege validation bypass during plugin installation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "An important flaw in Moby, an open-source container framework, allows for a privilege validation bypass during `docker plugin install`. This issue stems from an error in the daemon\u0027s privilege comparison logic, which could lead to unauthorized privilege escalation for installed plugins. Red Hat products that leverage Moby and allow Docker plugin installation are affected.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33997"
},
{
"category": "external",
"summary": "RHBZ#2453277",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453277"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33997",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33997"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33997",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33997"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/releases/tag/docker-v29.3.1",
"url": "https://github.com/moby/moby/releases/tag/docker-v29.3.1"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/security/advisories/GHSA-pxq6-2prw-chj9",
"url": "https://github.com/moby/moby/security/advisories/GHSA-pxq6-2prw-chj9"
}
],
"release_date": "2026-03-31T01:36:51.404000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "moby: docker: github.com/moby/moby: Moby: Privilege validation bypass during plugin installation"
},
{
"cve": "CVE-2026-34040",
"cwe": {
"id": "CWE-807",
"name": "Reliance on Untrusted Inputs in a Security Decision"
},
"discovery_date": "2026-03-31T03:01:34.530713+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453278"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Moby, an open-source container framework. This security vulnerability allows attackers to bypass authorization plugins (AuthZ), which are mechanisms designed to control access and permissions within the container environment. The bypass of these plugins can lead to unauthorized operations and potential compromise of the system\u0027s integrity and confidentiality.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Moby: Moby: Authorization bypass vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34040"
},
{
"category": "external",
"summary": "RHBZ#2453278",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453278"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34040",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34040"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34040",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34040"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/releases/tag/docker-v29.3.1",
"url": "https://github.com/moby/moby/releases/tag/docker-v29.3.1"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/security/advisories/GHSA-x744-4wpc-v9h2",
"url": "https://github.com/moby/moby/security/advisories/GHSA-x744-4wpc-v9h2"
}
],
"release_date": "2026-03-31T01:36:48.205000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 8.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "Moby: Moby: Authorization bypass vulnerability"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_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-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-40890",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-04-21T20:02:56.729456+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460245"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/gomarkdown/markdown, a Go library for parsing Markdown text and rendering as HTML. A remote attacker could exploit this vulnerability by providing a specially crafted malformed input. Specifically, input containing a \u0027\u003c\u0027 character not followed by a \u0027\u003e\u0027 character, when processed by the SmartypantsRenderer, can lead to an out-of-bounds read or a panic. This can result in a denial of service (DoS) for the application, making it unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/gomarkdown/markdown: github.com/gomarkdown/markdown: Denial of Service via malformed Markdown input",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting Red Hat products that utilize the `github.com/gomarkdown/markdown` library. The vulnerability occurs when the `SmartypantsRenderer` processes specially crafted malformed Markdown input containing an unclosed \u0027\u003c\u0027 character, leading to an out-of-bounds read or application panic. A successful exploitation may lead the application using the library unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40890"
},
{
"category": "external",
"summary": "RHBZ#2460245",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460245"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40890",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40890"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40890",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40890"
},
{
"category": "external",
"summary": "https://github.com/gomarkdown/markdown/commit/759bbc3e32073c3bc4e25969c132fc520eda2778",
"url": "https://github.com/gomarkdown/markdown/commit/759bbc3e32073c3bc4e25969c132fc520eda2778"
},
{
"category": "external",
"summary": "https://github.com/gomarkdown/markdown/security/advisories/GHSA-77fj-vx54-gvh7",
"url": "https://github.com/gomarkdown/markdown/security/advisories/GHSA-77fj-vx54-gvh7"
}
],
"release_date": "2026-04-21T19:51:53.237000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/gomarkdown/markdown: github.com/gomarkdown/markdown: Denial of Service via malformed Markdown input"
},
{
"cve": "CVE-2026-41602",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:16.099816+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463407"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "RHBZ#2463407",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463407"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41602",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41602"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/6",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/6"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:06.646000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation"
},
{
"cve": "CVE-2026-41603",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-04-28T10:01:29.782287+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463411"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname Validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "RHBZ#2463411",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463411"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41603",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41603"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/7",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/7"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:40.564000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname Validation"
},
{
"cve": "CVE-2026-41604",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:47.903741+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463416"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "RHBZ#2463416",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463416"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41604",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41604"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/5",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/5"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:13.996000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41605",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:54.269412+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463418"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "RHBZ#2463418",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463418"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41605",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41605"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/4",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/4"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:44.319000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability"
},
{
"cve": "CVE-2026-41606",
"cwe": {
"id": "CWE-606",
"name": "Unchecked Input for Loop Condition"
},
"discovery_date": "2026-04-28T10:01:19.136351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463408"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "RHBZ#2463408",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463408"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41606",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41606"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/3",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/3"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:12.815000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion"
},
{
"cve": "CVE-2026-41607",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:33.022623+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463412"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "RHBZ#2463412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41607",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41607"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/2",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/2"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:48.502000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41636",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-04-28T10:01:03.992199+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463404"
}
],
"notes": [
{
"category": "description",
"text": "Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings\n\nThis issue affects Apache Thrift: before 0.23.0.\n\nUsers are recommended to upgrade to version 0.23.0, which fixes the issue.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "RHBZ#2463404",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463404"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41636",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41636"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/1",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/1"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:22:14.639000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion"
},
{
"cve": "CVE-2026-43869",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-05-05T08:00:56.417384+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466660"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"category": "external",
"summary": "RHBZ#2466660",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466660"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43869",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43869"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r",
"url": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r"
}
],
"release_date": "2026-05-05T07:25:48.611000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-01T22:12:17+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22347"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:0b9dec4d176e5565b83022c319fd5d7182e75280b18ab26c8d7c93400590b49f_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1c700922d285d2c4d08f2288c7c349c96ce58d4320ea9357a746ef7370cb58fe_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:90d4bf9aff2231c853329b597cadf7bf05abd2ca2b11f8edda409155447af981_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f4186f245542f4c8bbe65958c053737d201318c94077d56b22bdcf01207109e1_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:06b139d24be23e09faa76eaa046a44985761256e5d4cd066e141a0f559c2eeb6_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:302f8ed5a96fed437997968b1f176d82a47ed82915b4dfa533d18bb0d862a47c_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3b6e453cd26458e3ae936c315676c3821027e58f2839dbc961b06f67b2107360_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e558cd17db0182d6d4cdbc225a1865c80a0f60e8b5dbfcd2d8c0d9a5a35207f3_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:fcc094ea7d3ea843c9844c02e432cfc3057a60c67b0b11aa94024452b9d04654_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:3424285f784830793954fbbe211595acc20e8b22908bb3b777c872ad26603223_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:4d826566a79f4334947f04518e77c2c047127c734d6512bfaf3c2a9b3da47b1c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:82eb20a578cc227af2c38d51829d82854b60ec92a18d97df0a28ca5a7f9cfab1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9726e04b4c8cb8cb46368b8901dd9dc692a811f93b6020a055040b1c5c9b3f6a_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:20e13782a2f6da9e44085635d93c45c6a62bf37cbfc6370d48ebdfb344688bb1_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2c45a63b55be2e157cf20129502707955fe9d0ff7b7dd970ee48a2875f2df134_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:71c48f9833ee51bfea877223a14073bd79839b5d0dd85867188fbd908ae23f31_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:81949f5fee45799df9566ec4031893c1bf4f9f2d22920591056cf4129bbd54af_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate validation"
}
]
}
RHSA-2026:22423
Vulnerability from csaf_redhat - Published: 2026-06-02 07:42 - Updated: 2026-06-29 05:00A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Workaround
|
A flaw was found in github.com/jackc/pgx. This memory-safety vulnerability could potentially lead to unexpected behavior or system instability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
A flaw was found in github.com/jackc/pgx, a PostgreSQL driver for Go. This memory-safety vulnerability could allow an attacker to cause various impacts, such as denial of service (DoS) or potentially arbitrary code execution, by exploiting memory corruption issues. The exact method of exploitation and specific consequences would depend on the nature of the memory corruption.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_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: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Workaround
|
A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings This issue affects Apache Thrift: before 0.23.0. Users are recommended to upgrade to version 0.23.0, which fixes the issue.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_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": "Multicluster Global Hub v1.3.4 general availability release images, which provide security fixes, bug fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact of Important. \nA Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE links in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat multicluster global hub is a set of components that enable you to import one or more hub clusters and manage them from a single hub cluster.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:22423",
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21728",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27137",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32283",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32285",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33487",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33815",
"url": "https://access.redhat.com/security/cve/CVE-2026-33815"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33816",
"url": "https://access.redhat.com/security/cve/CVE-2026-33816"
},
{
"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-41602",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41603",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41604",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41605",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41606",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41607",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41636",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-43869",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/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_22423.json"
}
],
"title": "Red Hat Security Advisory: Multicluster Global Hub 1.3.4 security update",
"tracking": {
"current_release_date": "2026-06-29T05:00:08+00:00",
"generator": {
"date": "2026-06-29T05:00:08+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22423",
"initial_release_date": "2026-06-02T07:42:09+00:00",
"revision_history": [
{
"date": "2026-06-02T07:42:09+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T07:42:14+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:08+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Multicluster Global Hub 1.3.4",
"product": {
"name": "Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_globalhub:1.3::el9"
}
}
}
],
"category": "product_family",
"name": "Multicluster Global Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779212259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779210675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779210608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-operator-bundle@sha256%3Aa1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle\u0026tag=1779925031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Adebed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779209992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779924243"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779212259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779210675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Ae8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779210608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Adced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779209992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779924243"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779212259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779210675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779210608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779209992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779924243"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1779212259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1779210675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1779210608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779209992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3Ad5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779924243"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64 as a component of Multicluster Global Hub 1.3.4",
"product_id": "Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.3.4"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-21728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T09:00:58.144273+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461395"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "grafana/tempo: Tempo: Denial of Service via large queries",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"category": "external",
"summary": "RHBZ#2461395",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461395"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21728",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728"
},
{
"category": "external",
"summary": "https://grafana.com/security/security-advisories/cve-2026-21728",
"url": "https://grafana.com/security/security-advisories/cve-2026-21728"
}
],
"release_date": "2026-04-24T08:00:47.074000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "grafana/tempo: Tempo: Denial of Service via large queries"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"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-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"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-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"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-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"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-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-32285",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:54.925687+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451846"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"category": "external",
"summary": "RHBZ#2451846",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451846"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32285",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32285"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285"
},
{
"category": "external",
"summary": "https://github.com/buger/jsonparser/issues/275",
"url": "https://github.com/buger/jsonparser/issues/275"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4514",
"url": "https://github.com/golang/vulndb/issues/4514"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4514",
"url": "https://pkg.go.dev/vuln/GO-2026-4514"
}
],
"release_date": "2026-03-26T19:40:51.837000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_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": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_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-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33487",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-26T18:02:32.278778+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451814"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "RHBZ#2451814",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451814"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33487",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33487"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc",
"url": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc"
}
],
"release_date": "2026-03-26T17:17:51.101000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue"
},
{
"cve": "CVE-2026-33815",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-04-07T16:01:25.130006+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455975"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/jackc/pgx. This memory-safety vulnerability could potentially lead to unexpected behavior or system instability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33815"
},
{
"category": "external",
"summary": "RHBZ#2455975",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455975"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33815",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33815"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33815",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33815"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4771",
"url": "https://pkg.go.dev/vuln/GO-2026-4771"
}
],
"release_date": "2026-04-07T15:19:24.344000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.3,
"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:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability"
},
{
"cve": "CVE-2026-33816",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-04-07T16:01:14.142946+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455972"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/jackc/pgx, a PostgreSQL driver for Go. This memory-safety vulnerability could allow an attacker to cause various impacts, such as denial of service (DoS) or potentially arbitrary code execution, by exploiting memory corruption issues. The exact method of exploitation and specific consequences would depend on the nature of the memory corruption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33816"
},
{
"category": "external",
"summary": "RHBZ#2455972",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455972"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33816",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33816"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4772",
"url": "https://pkg.go.dev/vuln/GO-2026-4772"
}
],
"release_date": "2026-04-07T15:19:24.529000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.3,
"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:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-41602",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:16.099816+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463407"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "RHBZ#2463407",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463407"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41602",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41602"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/6",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/6"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:06.646000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation"
},
{
"cve": "CVE-2026-41603",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-04-28T10:01:29.782287+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463411"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname Validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "RHBZ#2463411",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463411"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41603",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41603"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/7",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/7"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:40.564000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname Validation"
},
{
"cve": "CVE-2026-41604",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:47.903741+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463416"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "RHBZ#2463416",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463416"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41604",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41604"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/5",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/5"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:13.996000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41605",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:54.269412+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463418"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "RHBZ#2463418",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463418"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41605",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41605"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/4",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/4"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:44.319000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability"
},
{
"cve": "CVE-2026-41606",
"cwe": {
"id": "CWE-606",
"name": "Unchecked Input for Loop Condition"
},
"discovery_date": "2026-04-28T10:01:19.136351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463408"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "RHBZ#2463408",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463408"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41606",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41606"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/3",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/3"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:12.815000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion"
},
{
"cve": "CVE-2026-41607",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:33.022623+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463412"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "RHBZ#2463412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41607",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41607"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/2",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/2"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:48.502000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41636",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-04-28T10:01:03.992199+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463404"
}
],
"notes": [
{
"category": "description",
"text": "Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings\n\nThis issue affects Apache Thrift: before 0.23.0.\n\nUsers are recommended to upgrade to version 0.23.0, which fixes the issue.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "RHBZ#2463404",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463404"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41636",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41636"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/1",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/1"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:22:14.639000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion"
},
{
"cve": "CVE-2026-43869",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-05-05T08:00:56.417384+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466660"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"category": "external",
"summary": "RHBZ#2466660",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466660"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43869",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43869"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r",
"url": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r"
}
],
"release_date": "2026-05-05T07:25:48.611000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T07:42:09+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22423"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:031c9b259f062e07131ae61ad1b354b9362e768fe14bdd1794754e83424f4a20_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:03b18d051be128024f03df408069e5ad2346a2799115a4e13ad7cb394daabe3b_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6fb8506afd2e5f295305dc044e86a3059c1c91052715079388f2ea54a746fb38_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:823597446afec693451e47ebf73fd61d625e6fc327970340d4226b26a71f4707_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7a1cd2f61dfac63ccec20638eed4ad39b8a3a0d5d78bd68345885af030a1af0b_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:7b3abb4db8da02cb6c51b78fa7b8ee19cf0f9640902a5925a7bc2c41d6d25d69_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:9ba27f8af737cbe4eb46bf62cdb56e4582ed15640046cf741a062a9702c83a32_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:e8d3ee3bc0d99e38df6c617793c517be7261cce2855926a53ab10b42e989bdfd_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:a1d22f270c8e8b6fdb8324bf13b116382c0364058f28ba043128b93772ff33d3_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:0d265ad57e771cf3403b59e030e8e47e4c439c0d300721944ba8ca89ed8d0817_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:2e19aabfe25fff53230af0e6236eb19ca44004f47e1ebfe9add5acf9ba3ba525_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:9438798cc9dfaf0d93675dd5a6cf1162ff8025f49ab162374e74dffa67f4c1ee_amd64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d5ebd2285f925a5d6efb9bf712ee41aa45dc4cce7ff50a0aca83da5155d4aa8c_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:2b952d5fb1960f40a3f05b351f958829b3a61a31fce495a3af751a063929889d_arm64",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:324b21e3ef94225610d57090e1e05617ae46f4fc536bdcec5d3975c5fc44bb6e_s390x",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:dced1f854c7f823c247d35ac265da3994d5dda70fa4829ec91fa49295966c84f_ppc64le",
"Multicluster Global Hub 1.3.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:debed0fd65dfd3106368fbdad8a3730888c73ffca97a009054a0f2a64bd6ef8c_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate validation"
}
]
}
RHSA-2026:22450
Vulnerability from csaf_redhat - Published: 2026-06-02 11:22 - Updated: 2026-06-29 05:00A 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: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
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: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
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: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.\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* golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip (CVE-2025-61728)\n\n* golang: net/url: Memory exhaustion in query parameter parsing in net/url (CVE-2025-61726)\n\n* crypto/tls: Unexpected session resumption in crypto/tls (CVE-2025-68121)\n\n* crypto/x509: Incorrect enforcement of email constraints in crypto/x509 (CVE-2026-27137)\n\n* net/url: Incorrect parsing of IPv6 host literals in net/url (CVE-2026-25679)\n\n* github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message (CVE-2026-4427,GHSA-jqcq-xjh3-6g23)\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/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server (CVE-2026-32286)\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\n* golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root (CVE-2026-32282)\n\n* crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages (CVE-2026-32283)\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:22450",
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2434431",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434431"
},
{
"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": "2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "2448626",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448626"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"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": "RHEL-179244",
"url": "https://issues.redhat.com/browse/RHEL-179244"
},
{
"category": "external",
"summary": "RHEL-180005",
"url": "https://issues.redhat.com/browse/RHEL-180005"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_22450.json"
}
],
"title": "Red Hat Security Advisory: osbuild-composer security update",
"tracking": {
"current_release_date": "2026-06-29T05:00:09+00:00",
"generator": {
"date": "2026-06-29T05:00:09+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22450",
"initial_release_date": "2026-06-02T11:22:13+00:00",
"revision_history": [
{
"date": "2026-06-02T11:22:13+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T11:22:13+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:09+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 (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.2"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el10_2?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el10_2.src",
"product": {
"name": "osbuild-composer-0:165.1-2.el10_2.src",
"product_id": "osbuild-composer-0:165.1-2.el10_2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el10_2?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el10_2?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el10_2?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@165.1-2.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-core-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@165.1-2.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@165.1-2.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@165.1-2.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@165.1-2.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@165.1-2.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@165.1-2.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"product_id": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@165.1-2.el10_2?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src"
},
"product_reference": "osbuild-composer-0:165.1-2.el10_2.src",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
}
]
},
"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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:39.965024+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434431"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to be able to process a malicious zip archive with an application using the archive/zip package. Additionally, this vulnerability can cause a Go application to consume an excessive amount of CPU and memory, eventually resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61728"
},
{
"category": "external",
"summary": "RHBZ#2434431",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434431"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61728",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728"
},
{
"category": "external",
"summary": "https://go.dev/cl/736713",
"url": "https://go.dev/cl/736713"
},
{
"category": "external",
"summary": "https://go.dev/issue/77102",
"url": "https://go.dev/issue/77102"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4342",
"url": "https://pkg.go.dev/vuln/GO-2026-4342"
}
],
"release_date": "2026-01-28T19:30:31.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, implement a timeout in your archive/zip processing logic to abort the operation if it exceeds a few seconds, preventing the application from consuming an excessive amount of resources.",
"product_ids": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip"
},
{
"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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
}
],
"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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption"
},
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
}
],
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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-02T11:22:13+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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22450"
},
{
"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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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.2.Z:osbuild-composer-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.src",
"AppStream-10.2.Z:osbuild-composer-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-core-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-debugsource-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-tests-debuginfo-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-0:165.1-2.el10_2.x86_64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.aarch64",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.ppc64le",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.s390x",
"AppStream-10.2.Z:osbuild-composer-worker-debuginfo-0:165.1-2.el10_2.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:22465
Vulnerability from csaf_redhat - Published: 2026-06-02 13:10 - Updated: 2026-06-29 05:00A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application's failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
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: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
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: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in Red Hat Quay's container image upload process. An authenticated user with push access to any repository on the registry can interfere with image uploads in progress by other users, including those in repositories they do not have access to. This could allow the attacker to read, modify, or cancel another user's in-progress image upload.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in Red Hat Quay's handling of resumable container image layer uploads. The upload process stores intermediate data in the database using a format that, if tampered with, could allow an attacker to execute arbitrary code on the Quay server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in BuildKit, a toolkit for converting source code to build artifacts. An untrusted BuildKit frontend can be leveraged to craft a malicious API message, allowing files to be written outside of the designated BuildKit state directory. This vulnerability, which is a form of arbitrary file write, could enable an attacker to execute unauthorized code or escalate their privileges on the system. This issue arises when custom BuildKit frontends are used with specific configuration options.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in Forge (also called `node-forge`), a JavaScript implementation of Transport Layer Security. A remote attacker could exploit weaknesses in the RSASSA PKCS#1 v1.5 signature verification process. By crafting malicious signatures that include extra data within the ASN structure and do not meet padding requirements, an attacker can bypass signature validation. This allows for the creation of forged signatures that appear legitimate, potentially compromising the integrity and authenticity of communications.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library's failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application's core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution "Gadget" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 | — |
A flaw was found in Axios, a widely used HTTP client. This vulnerability, known as a Prototype Pollution "Gadget" attack, allows a remote attacker to subtly alter JSON API responses. By manipulating a specific function, an attacker can selectively modify data within these responses. This could lead to significant security breaches, including unauthorized privilege escalation, fraudulent balance manipulation, or bypassing critical authorization checks.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_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 Quay 3.17.2 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.17.2",
"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:22465",
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-62718",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27459",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29074",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32589",
"url": "https://access.redhat.com/security/cve/CVE-2026-32589"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32590",
"url": "https://access.redhat.com/security/cve/CVE-2026-32590"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33747",
"url": "https://access.redhat.com/security/cve/CVE-2026-33747"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33894",
"url": "https://access.redhat.com/security/cve/CVE-2026-33894"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-39892",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40192",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40895",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42033",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42035",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42039",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42041",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42043",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42044",
"url": "https://access.redhat.com/security/cve/CVE-2026-42044"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4427",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_22465.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.17.2",
"tracking": {
"current_release_date": "2026-06-29T05:00:10+00:00",
"generator": {
"date": "2026-06-29T05:00:10+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:22465",
"initial_release_date": "2026-06-02T13:10:36+00:00",
"revision_history": [
{
"date": "2026-06-02T13:10:36+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-02T13:10:41+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T05:00:10+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.17",
"product": {
"name": "Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.17::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3A4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-bundle\u0026tag=1778601504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel9@sha256%3A0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-rhel9\u0026tag=1778599991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3A844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-bundle\u0026tag=1778601553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel9@sha256%3A53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel9\u0026tag=1778599998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778600428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel9@sha256%3Ae2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel9\u0026tag=1778599977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel9@sha256%3Ac38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8?arch=amd64\u0026repository_url=registry.redhat.io/quay/clair-rhel9\u0026tag=1778600005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3A706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-operator-bundle\u0026tag=1779929597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel9@sha256%3Aeb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel9\u0026tag=1778839890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3A8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1?arch=amd64\u0026repository_url=registry.redhat.io/quay/quay-rhel9\u0026tag=1779922205"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel9@sha256%3Ab3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-rhel9\u0026tag=1778599991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel9@sha256%3A07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel9\u0026tag=1778599998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778600428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel9@sha256%3A805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel9\u0026tag=1778599977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"product_id": "registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel9@sha256%3A3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a?arch=arm64\u0026repository_url=registry.redhat.io/quay/clair-rhel9\u0026tag=1778600005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel9@sha256%3Ace7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel9\u0026tag=1778839890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3Aa24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110?arch=arm64\u0026repository_url=registry.redhat.io/quay/quay-rhel9\u0026tag=1779922205"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel9@sha256%3Ad59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-rhel9\u0026tag=1778599991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel9@sha256%3Ab6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel9\u0026tag=1778599998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Af932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778600428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel9@sha256%3A466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel9\u0026tag=1778599977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel9@sha256%3A97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/clair-rhel9\u0026tag=1778600005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel9@sha256%3A18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel9\u0026tag=1778839890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3A9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812?arch=ppc64le\u0026repository_url=registry.redhat.io/quay/quay-rhel9\u0026tag=1779922205"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel9@sha256%3Ae1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-container-security-operator-rhel9\u0026tag=1778599991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel9@sha256%3A8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-bridge-operator-rhel9\u0026tag=1778599998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8\u0026tag=1778600428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel9@sha256%3A661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-builder-rhel9\u0026tag=1778599977"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel9@sha256%3A5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75?arch=s390x\u0026repository_url=registry.redhat.io/quay/clair-rhel9\u0026tag=1778600005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel9@sha256%3Ad05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-operator-rhel9\u0026tag=1778839890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3A65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5?arch=s390x\u0026repository_url=registry.redhat.io/quay/quay-rhel9\u0026tag=1779922205"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64 as a component of Red Hat Quay 3.17",
"product_id": "Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64",
"relates_to_product_reference": "Red Hat Quay 3.17"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-62718",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-09T15:01:48.111177+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456913"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not correctly handle hostname normalization when evaluating NO_PROXY rules. An attacker can exploit this by crafting requests to loopback addresses (e.g., localhost. or [::1]) which bypass the NO_PROXY configuration and are routed through the configured proxy. This can lead to Server-Side Request Forgery (SSRF) vulnerabilities, enabling attackers to access sensitive internal or loopback services that should otherwise be protected.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw has limited impact due to combination of non-default conditions to exploit: the attacker must be able to control or influence URLs passed to axios in a server-side context, the application must have both `HTTP_PROXY` and `NO_PROXY` configured, and the proxy itself must be positioned to act on the misdirected traffic or have been compromised by the attacker to intercept the rerouted traffic.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-62718"
},
{
"category": "external",
"summary": "RHBZ#2456913",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456913"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-62718",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-62718"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-62718"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1",
"url": "https://datatracker.ietf.org/doc/html/rfc1034#section-3.1"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2",
"url": "https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df",
"url": "https://github.com/axios/axios/commit/fb3befb6daac6cad26b2e54094d0f2d9e47f24df"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/pull/10661",
"url": "https://github.com/axios/axios/pull/10661"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/releases/tag/v1.15.0",
"url": "https://github.com/axios/axios/releases/tag/v1.15.0"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3p68-rc4w-qgx5"
}
],
"release_date": "2026-04-09T14:31:46.067000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Server-Side Request Forgery and proxy bypass due to improper hostname normalization"
},
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-27459",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-03-18T00:01:41.404915+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448503"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pyOpenSSL: DTLS cookie callback buffer overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw is only exploitable when an application using the pyOpenSSL library provides a custom callback to the set_cookie_generate_callback function. For the buffer overflow to occur, the callback function must return a cookie string or byte sequence longer than 256 bytes, limiting the exposure of this issue. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "RHBZ#2448503",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448503"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27459",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27459"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst",
"url": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408",
"url": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4",
"url": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4"
}
],
"release_date": "2026-03-17T23:34:28.483000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "To mitigate this flaw, ensure the callback provided to the set_cookie_generate_callback function strictly limits the returned cookie string or byte sequence to under 256 bytes.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pyOpenSSL: DTLS cookie callback buffer overflow"
},
{
"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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-29074",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-03-06T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445132"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application\u0027s failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "svgo: SVGO: Denial of Service via XML entity expansion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "RHBZ#2445132",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445132"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29074",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29074"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673",
"url": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673"
}
],
"release_date": "2026-03-06T07:23:05.716000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "svgo: SVGO: Denial of Service via XML entity expansion"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"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": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"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": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"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-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"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": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"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": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"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-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-32589",
"cwe": {
"id": "CWE-639",
"name": "Authorization Bypass Through User-Controlled Key"
},
"discovery_date": "2026-03-12T14:43:07.878000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446963"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay\u0027s container image upload process. An authenticated user with push access to any repository on the registry can interfere with image uploads in progress by other users, including those in repositories they do not have access to. This could allow the attacker to read, modify, or cancel another user\u0027s in-progress image upload.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: quay: insecure direct object reference in BlobUpload",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation requires valid login credentials to the Quay registry. Unauthenticated users cannot exploit this flaw.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32589"
},
{
"category": "external",
"summary": "RHBZ#2446963",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446963"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32589",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32589"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32589",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32589"
}
],
"release_date": "2026-04-08T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "mirror-registry: quay: insecure direct object reference in BlobUpload"
},
{
"acknowledgments": [
{
"names": [
"Antony Di Scala",
"Michael Whale"
]
}
],
"cve": "CVE-2026-32590",
"cwe": {
"id": "CWE-502",
"name": "Deserialization of Untrusted Data"
},
"discovery_date": "2026-03-12T14:43:11.443000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446964"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Red Hat Quay\u0027s handling of resumable container image layer uploads. The upload process stores intermediate data in the database using a format that, if tampered with, could allow an attacker to execute arbitrary code on the Quay server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mirror-registry: remote code execution using pickle deserialization",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation requires valid login credentials. The attacker must be authenticated to the registry, either through the web interface or through a container tool such as Podman.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32590"
},
{
"category": "external",
"summary": "RHBZ#2446964",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446964"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32590",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32590"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32590",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32590"
}
],
"release_date": "2026-04-08T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "mirror-registry: remote code execution using pickle deserialization"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_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 Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_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-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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-33747",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-27T02:01:29.921765+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452076"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in BuildKit, a toolkit for converting source code to build artifacts. An untrusted BuildKit frontend can be leveraged to craft a malicious API message, allowing files to be written outside of the designated BuildKit state directory. This vulnerability, which is a form of arbitrary file write, could enable an attacker to execute unauthorized code or escalate their privileges on the system. This issue arises when custom BuildKit frontends are used with specific configuration options.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "BuildKit: github.com/moby/buildkit: BuildKit: Arbitrary file write and code execution via untrusted 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 Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33747"
},
{
"category": "external",
"summary": "RHBZ#2452076",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452076"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33747",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33747"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33747",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33747"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/releases/tag/v0.28.1",
"url": "https://github.com/moby/buildkit/releases/tag/v0.28.1"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/security/advisories/GHSA-4c29-8rgm-jvjj",
"url": "https://github.com/moby/buildkit/security/advisories/GHSA-4c29-8rgm-jvjj"
}
],
"release_date": "2026-03-27T00:49:06.165000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, avoid using untrusted BuildKit frontends. Restrict the use of custom BuildKit frontends to only those from verified and trusted sources. Do not specify untrusted frontends via `#syntax` or `--build-arg BUILDKIT_SYNTAX`.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "BuildKit: github.com/moby/buildkit: BuildKit: Arbitrary file write and code execution via untrusted frontend"
},
{
"cve": "CVE-2026-33894",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-27T21:02:52.462999+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452464"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Forge (also called `node-forge`), a JavaScript implementation of Transport Layer Security. A remote attacker could exploit weaknesses in the RSASSA PKCS#1 v1.5 signature verification process. By crafting malicious signatures that include extra data within the ASN structure and do not meet padding requirements, an attacker can bypass signature validation. This allows for the creation of forged signatures that appear legitimate, potentially compromising the integrity and authenticity of communications.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: Forge: Signature Forgery via Weak RSASSA PKCS#1 v1.5 Verification",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33894"
},
{
"category": "external",
"summary": "RHBZ#2452464",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452464"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33894",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33894"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33894",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33894"
},
{
"category": "external",
"summary": "https://datatracker.ietf.org/doc/html/rfc2313#section-8",
"url": "https://datatracker.ietf.org/doc/html/rfc2313#section-8"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-ppp5-5v6c-4jwp",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-ppp5-5v6c-4jwp"
},
{
"category": "external",
"summary": "https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE",
"url": "https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE"
},
{
"category": "external",
"summary": "https://www.rfc-editor.org/rfc/rfc8017.html",
"url": "https://www.rfc-editor.org/rfc/rfc8017.html"
}
],
"release_date": "2026-03-27T20:45:49.583000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: Forge: Signature Forgery via Weak RSASSA PKCS#1 v1.5 Verification"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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-39892",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-08T22:00:59.416053+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456735"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the cryptography library. This vulnerability occurs when a non-contiguous buffer is passed to certain application programming interfaces (APIs) that accept Python buffers, such as Hash.update(). A remote attacker could exploit this to cause a buffer overflow, potentially leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In default configurations Red Hat products isolate service processes from total system access. Should an attacker be able to exploit this vulnerability their impact will be limited to that service account and they will not have access to the broader system.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-39892"
},
{
"category": "external",
"summary": "RHBZ#2456735",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456735"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-39892",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-39892"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-39892"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/08/12",
"url": "http://www.openwall.com/lists/oss-security/2026/04/08/12"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5",
"url": "https://github.com/pyca/cryptography/commit/622d672e429a7cff836a23c5903683dbec1901f5"
},
{
"category": "external",
"summary": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq",
"url": "https://github.com/pyca/cryptography/security/advisories/GHSA-p423-j2cm-9vmq"
}
],
"release_date": "2026-04-08T20:49:41.967000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cryptography: Cryptography: Buffer overflow via non-contiguous buffer in API"
},
{
"cve": "CVE-2026-40192",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-04-16T00:00:49.590876+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458856"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library\u0027s failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "RHBZ#2458856",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458856"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40192",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40192"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628",
"url": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/pull/9521",
"url": "https://github.com/python-pillow/Pillow/pull/9521"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j",
"url": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j"
},
{
"category": "external",
"summary": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb",
"url": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb"
}
],
"release_date": "2026-04-15T22:53:56.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_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 Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing"
},
{
"cve": "CVE-2026-40895",
"cwe": {
"id": "CWE-212",
"name": "Improper Removal of Sensitive Information Before Storage or Transfer"
},
"discovery_date": "2026-04-21T21:02:33.280553+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460297"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "RHBZ#2460297",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460297"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40895",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40895"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653",
"url": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653"
}
],
"release_date": "2026-04-21T19:59:59.759000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects"
},
{
"cve": "CVE-2026-42033",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:20.937507+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461607"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, an HTTP client library. This vulnerability allows an attacker to exploit a prototype pollution issue if another part of the application has already polluted the Object.prototype. By doing so, the attacker can intercept and modify JSON responses or take control of the HTTP communication. This could lead to unauthorized access to sensitive information like user credentials and request details.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42033"
},
{
"category": "external",
"summary": "RHBZ#2461607",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461607"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42033",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42033"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42033"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pf86-5x62-jrwf"
}
],
"release_date": "2026-04-24T17:36:44.132000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: HTTP Transport Hijacking via Prototype Pollution"
},
{
"cve": "CVE-2026-42035",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T18:01:17.109481+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461606"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a software library for making network requests. A remote attacker can exploit a prototype pollution vulnerability to inject arbitrary HTTP headers into outgoing requests. This occurs when the application\u0027s core object definitions are manipulated, causing Axios to misinterpret data and include attacker-controlled headers in network communications. This could lead to unauthorized actions or data manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Arbitrary HTTP header injection via prototype pollution",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42035"
},
{
"category": "external",
"summary": "RHBZ#2461606",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461606"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42035",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42035"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42035"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-6chq-wfr3-2hj9"
}
],
"release_date": "2026-04-24T17:38:07.752000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "axios: Axios: Arbitrary HTTP header injection via prototype pollution"
},
{
"cve": "CVE-2026-42039",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T19:01:44.887156+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461630"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client for browsers and Node.js. This vulnerability occurs because the `toFormData` function recursively processes nested objects without a depth limit. A remote attacker can exploit this by sending deeply nested request data, which causes the Node.js process to crash due to a RangeError, leading to a potential Denial of Service (DoS) if the process crashes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42039"
},
{
"category": "external",
"summary": "RHBZ#2461630",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461630"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42039",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42039"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42039"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9",
"url": "https://github.com/axios/axios/security/advisories/GHSA-62hf-57xw-28j9"
}
],
"release_date": "2026-04-24T18:01:30.775000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Node.js: Axios: Denial of Service via unbounded recursion in toFormData with deeply nested request data"
},
{
"cve": "CVE-2026-42041",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T19:01:41.034289+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461629"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability, a Prototype Pollution \"Gadget\" attack, allows an attacker to manipulate the `Object.prototype.validateStatus` property. By polluting this property, all HTTP error responses (such as 401, 403, or 500) are silently treated as successful responses. This can lead to a complete bypass of application-level authentication and error handling, potentially granting unauthorized access.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42041"
},
{
"category": "external",
"summary": "RHBZ#2461629",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461629"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42041",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42041"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42041"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63",
"url": "https://github.com/axios/axios/security/advisories/GHSA-w9j2-pvgh-6h63"
}
],
"release_date": "2026-04-24T17:55:30.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Authentication bypass due to prototype pollution of HTTP error handling"
},
{
"cve": "CVE-2026-42043",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"discovery_date": "2026-04-24T19:01:22.552379+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461626"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. An attacker who can control the destination address of an Axios request can exploit this vulnerability. By using specific internal network addresses (within the 127.0.0.0/8 range, excluding 127.0.0.1), the attacker can completely bypass the NO_PROXY protection, potentially leading to unauthorized access or information disclosure within the network. This issue is an incomplete fix for a previous vulnerability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: NO_PROXY bypass via crafted URL",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42043"
},
{
"category": "external",
"summary": "RHBZ#2461626",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461626"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42043",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42043"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42043"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pmwg-cvhr-8vh7"
}
],
"release_date": "2026-04-24T17:54:42.668000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: NO_PROXY bypass via crafted URL"
},
{
"cve": "CVE-2026-42044",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-24T19:01:13.418725+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461624"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a widely used HTTP client. This vulnerability, known as a Prototype Pollution \"Gadget\" attack, allows a remote attacker to subtly alter JSON API responses. By manipulating a specific function, an attacker can selectively modify data within these responses. This could lead to significant security breaches, including unauthorized privilege escalation, fraudulent balance manipulation, or bypassing critical authorization checks.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"known_not_affected": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42044"
},
{
"category": "external",
"summary": "RHBZ#2461624",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461624"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42044",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42044"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42044",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42044"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3w6x-2g7m-8v23",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3w6x-2g7m-8v23"
}
],
"release_date": "2026-04-24T17:49:49.517000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-02T13:10:36+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:22465"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:3a55b3ec35c4a8e6359043566b86376871be774355cf8f09b442b268b5f2243a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:5821c6d9fc1efb01b375cd59017be0ab7adb1794e8ab92b03387e7930d73fd75_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:97f144ef4b31ee6cfb154555c6f15ef4184bebf9298b440eb604228435513c79_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/clair-rhel9@sha256:c38a3a6547c9da624e72c0a5092fba5668a66a9b2f440808b8b6f100fa1d1ae8_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:844173e5e8d469ff53b4741735f12c262f70122a83e1a3b44287633f87d922f9_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:07ac14b5985a6d1aab2ad58d0ed6fcd94a538de1c9bd171bc4a4162b2ade6a62_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:53294b9f3b327dcd9cd5e2188d0ee4b0861c00923421de85319f2dc442ce7508_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:8e927b2102b2d5cd45629790d16c5ada1cc327b6a64acb33d36e2c4f7fbd9912_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:b6ca818876d348e6204c808d141be0190946279851a00eb4211888e945c90f80_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:7914cfbd30aa0ca0a25b72387ef420879f6eb890b607c88b75f6aa1c9528ed2a_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8838c17d3bb0b1490e23866c3ebc3a7c212d381aab4df0d519a8ea2d6099ae3b_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8dded1d8b749a07ff9400399ba8a005d59258eb896b9ff66014587e5b8dd63f6_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:f932e889884451edf02937c8c7b858c15542d8f49bed07414c01e9bf4e879bd4_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:466b8c2341eb4d2f6c6dd02c7403e5d96fb011b192b9d3bd1d9519855dee1e5c_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:661fb709bf1bf1b391534159a8df1567245cc791f069035f3c6531ee536cebf8_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:805855fd0e19fcb41d0ee649196ac2eefd19a7af1394c643d1981db033517e27_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-builder-rhel9@sha256:e2e5b4773f22bf9205096f15b3a2275f748c0c3f00f1c480e4f336615a5cea91_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:4aea7185e69a0d0c235cb7d1ee55c9bf4336fe8c2a5a911a9e298d56673f847c_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:0db0854b0aebfbc40f819ee94fadea510ed5b8294a16af0eee88880129d52587_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:b3b93f33b172be548f93e48755e0a88e88de33cbe2d65858ee93c5c5fefa5c1f_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:d59de91f679cc4b70d2093d717dbdf3f8bef7322de1d43f7db2470cff1f022e0_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e1d6574191585e5cc4416c8c6efd5b4dad26b6dba4c54ca4008f8d314d59145d_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-bundle@sha256:706312389cb29f050fbb20ad327d0cdd2adc526fb32346abe1a6e98d64323bfd_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:18eda16fdd54b45a3fe484542d20fb1b1b4fd5b9e38c79d70dc11b4c0e1bab03_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:ce7a9853fdd031d67e796becced393855e1944ecd9e8acb2d589403834d0b7f1_arm64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:d05c09022220346d62bc4dc57984c7368994d317d5745139191d6aba70599883_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-operator-rhel9@sha256:eb037e300339377b57b964f05c5988b3d8f5a1a8fb63a3e167de6b68dc875e1f_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:65c631d107c264bef8a74336077b413609da4cfc37c8c9488afdcaa0df07dad5_s390x",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:8c7f4a453b3414c2d3457f2a8c65b67c70dd55e4bf7a31a9f3674865af5e1da1_amd64",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:9e4588550a0e266f7598eb4af1dd020629357ffd305a02d8e7765114c7210812_ppc64le",
"Red Hat Quay 3.17:registry.redhat.io/quay/quay-rhel9@sha256:a24c973edd52d4a418d415d54108cf44f495a969db1d0f6e5b6149e0a6021110_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget"
}
]
}
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.